(1.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "email" varchar(255), "title" varchar(255), "dob" datetime, "is_manager" boolean, "created_at" datetime, "updated_at" datetime)   (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) select sqlite_version(*)  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140711034542') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-29 21:54:45 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (46.6ms) Rendered people/new.html.haml within layouts/application (55.4ms) Rendered application/_flash_messages.html.haml (10.3ms) Completed 200 OK in 391ms (Views: 385.9ms | ActiveRecord: 0.5ms) Started POST "/people" for 127.0.0.1 at 2014-07-29 21:54:45 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"01", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (2.5ms) Rendered people/_form.html.haml (9.9ms) Rendered people/new.html.haml within layouts/application (10.2ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 21ms (Views: 12.1ms | ActiveRecord: 0.2ms)  (1.6ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-29 21:54:45 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (9.0ms) Rendered people/new.html.haml within layouts/application (9.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-29 21:54:45 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"01", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:45.754375"], ["dob", "2014-07-30 01:54:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-30 01:54:45.754375"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 8ms (ActiveRecord: 1.4ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-29 21:54:45 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.4ms) Rendered people/new.html.haml within layouts/application (8.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:45.786236"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:45.786236"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 21:54:45 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (10.9ms) Rendered people/edit.html.haml within layouts/application (12.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 14.7ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-29 21:54:45 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"01", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-30 01:54:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-30 01:54:45.823439"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 6ms (ActiveRecord: 1.5ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 21:54:45 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.7ms) Rendered people/edit.html.haml within layouts/application (9.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-29 21:54:45 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (14.0ms) Rendered people/new.html.haml within layouts/application (14.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-29 21:54:45 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"01", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:45.904309"], ["dob", "2014-07-30 01:54:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-30 01:54:45.904309"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (2.4ms) Rendered application/_search_form.html.haml (2.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (5.6ms) Rendered people/index.html.haml within layouts/application (22.1ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 26ms (Views: 24.5ms | ActiveRecord: 0.6ms)  (1.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:45.947211"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:45.947211"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 21:54:45 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.0ms) Rendered people/edit.html.haml within layouts/application (8.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-29 21:54:45 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.1ms) Rendered people/new.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:45.989980"], ["dob", "2012-07-30 01:54:45.989033"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:45.989980"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 21:54:45 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.5ms) Rendered people/edit.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-29 21:54:46 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"29", "dob(4i)"=>"21", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-29 21:54:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-30 01:54:46.037086"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:46 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.4ms)  (1.8ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (1.9ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------- ControllerScaffoldingTest: test_truth -------------------------------------  (0.1ms) rollback transaction Started GET "/people/new" for 127.0.0.1 at 2014-07-29 21:54:49 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (20.3ms) Rendered people/new.html.haml within layouts/application (20.9ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-29 21:54:49 -0400 Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:49 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-29 21:54:50 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"29", "dob(4i)"=>"21", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.3ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:50.602041"], ["dob", "2012-07-29 21:54:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:50.602041"]]  (1.0ms) commit transaction Redirected to http://127.0.0.1:50121/people Completed 302 Found in 6ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:50 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.1ms | ActiveRecord: 0.5ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:50 -0400  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:51 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.3ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:51.480442"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:51.480442"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:51 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.1ms | ActiveRecord: 0.5ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:51 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-29 21:54:52 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.5ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:50121/people Completed 302 Found in 4ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:52 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:52 -0400  (0.3ms) SELECT COUNT(*) FROM "people"  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:53.585124"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:53.585124"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:53 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 21:54:53 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.2ms) Rendered people/edit.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.2ms)  (1.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:53 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)  (1.8ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:53 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:53 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-29 21:54:53 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:53 -0400  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:54 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.028165"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_6@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.028165"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.031059"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_7@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.031059"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.033598"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_8@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.033598"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.036028"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_9@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.036028"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.038585"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.038585"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:54 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (5.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-29 21:54:54 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.3ms)  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.071676"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.071676"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.074951"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.074951"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.077781"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.077781"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.081004"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.081004"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.083716"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.083716"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.087701"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.087701"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.090110"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.090110"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.092530"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.092530"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.094890"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.094890"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.097381"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.097381"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.099863"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.099863"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.102485"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.102485"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.105148"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.105148"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.107719"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.107719"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.110202"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.110202"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.113071"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.113071"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.115530"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.115530"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.118251"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.118251"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.122166"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.122166"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.124789"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.124789"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.127296"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.127296"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.131524"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.131524"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.135419"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.135419"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.138395"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.138395"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.140967"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.140967"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.144604"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.144604"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.148054"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.148054"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.150892"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_66@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.150892"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.153654"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.153654"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.156579"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.156579"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.159481"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.159481"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.163049"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.163049"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.166647"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.166647"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.169839"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.169839"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.172971"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.172971"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.175997"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.175997"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.180168"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.180168"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.183053"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.183053"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.185943"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.185943"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.188842"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.188842"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.192668"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.192668"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.195725"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.195725"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.198551"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.198551"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.202414"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.202414"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.205532"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.205532"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.208471"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.208471"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.211273"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.211273"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.214213"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.214213"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.217687"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.217687"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:54.220674"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.220674"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:54 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (14.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:54 -0400 Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-29 21:54:54 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (12.0ms) Rendered people/index.html.haml within layouts/application (19.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:54 -0400  (3.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.510146"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.510146"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.513174"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.513174"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.515965"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.515965"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.518549"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.518549"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.520880"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.520880"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.523538"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.523538"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.526485"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.526485"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.529473"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.529473"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.533073"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.533073"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.535650"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.535650"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.538157"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.538157"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.540532"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.540532"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.543004"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.543004"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.545865"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.545865"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.548659"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.548659"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.551331"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.551331"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.554301"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.554301"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.557557"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.557557"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.560656"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.560656"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.563242"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.563242"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.567143"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.567143"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.570233"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.570233"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.572767"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.572767"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.575203"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.575203"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.577676"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.577676"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.580165"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.580165"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.582674"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.582674"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.584951"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.584951"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.587385"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.587385"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.589844"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.589844"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:55.592514"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.592514"]]  (1.2ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-29 21:54:55 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.9ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:55 -0400 Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-29 21:54:56 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (12.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.6ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:56 -0400 Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-29 21:54:56 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.2ms) Rendered people/index.html.haml within layouts/application (12.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:56 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-29 21:54:57 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (11.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.8ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:57 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (3.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.262838"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.262838"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.265494"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.265494"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.268197"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.268197"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.271519"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.271519"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.274463"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.274463"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.276917"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.276917"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.280021"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.280021"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.282509"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.282509"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.285810"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.285810"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.288954"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.288954"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.291784"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.291784"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.294679"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.294679"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.298376"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.298376"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.301464"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.301464"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.304768"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.304768"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.307752"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.307752"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.311237"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.311237"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.313887"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.313887"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.316847"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.316847"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.319799"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.319799"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.323225"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.323225"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.326201"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.326201"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.329055"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.329055"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.331626"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.331626"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.334825"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.334825"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.338514"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.338514"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.342067"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.342067"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.344711"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.344711"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.347373"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.347373"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.350088"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.350088"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:58.353268"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.353268"]]  (1.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:58 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.7ms) Rendered people/index.html.haml within layouts/application (15.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:58 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-29 21:54:58 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (16.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 17.3ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:58 -0400  (3.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.073066"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.073066"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.075874"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.075874"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.078422"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.078422"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.080820"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.080820"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.083438"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.083438"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.085914"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.085914"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.088251"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.088251"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.090654"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.090654"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.093061"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.093061"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.095627"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.095627"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.098139"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.098139"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.100672"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.100672"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.103402"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.103402"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.106067"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.106067"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.108485"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.108485"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.110856"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.110856"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.113200"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.113200"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.115569"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.115569"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.118052"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.118052"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.120431"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.120431"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.122853"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.122853"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.125183"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.125183"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.127484"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.127484"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.130414"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.130414"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.132845"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.132845"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.135247"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.135247"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.137588"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.137588"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.140260"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.140260"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.143238"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.143238"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.145526"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.145526"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.147984"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.147984"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (10.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:59 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-29 21:54:59 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (17.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 21ms (Views: 17.9ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:59 -0400  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.941517"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.941517"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.944571"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.944571"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.947182"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.947182"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.949628"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.949628"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.952046"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.952046"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.955198"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.955198"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.957902"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.957902"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.960509"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.960509"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.962728"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.962728"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.965042"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.965042"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.967396"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.967396"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.969824"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.969824"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.972189"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.972189"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.974510"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.974510"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.976875"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.976875"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.979436"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.979436"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.981809"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.981809"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.984086"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.984086"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.987450"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.987450"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.989962"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.989962"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.992290"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.992290"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.994977"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.994977"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:54:59.997463"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.997463"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.000379"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.000379"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.003883"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.003883"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.006476"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.006476"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.009041"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.009041"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.011770"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.011770"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.014300"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.014300"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.016681"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.016681"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.019546"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.019546"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 21:55:00 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (10.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.2ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:55:00 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-29 21:55:00 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.2ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:55:00 -0400  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.555798"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.555798"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.558632"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.558632"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.561581"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.561581"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.564131"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.564131"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.566628"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.566628"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.568966"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.568966"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.571404"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.571404"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.573789"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.573789"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.576179"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.576179"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.578736"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.578736"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.581408"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.581408"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.583804"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.583804"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.586173"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.586173"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.588800"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.588800"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.591664"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.591664"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.594725"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.594725"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.597281"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.597281"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.599929"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.599929"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.604083"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.604083"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.607128"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.607128"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.610869"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.610869"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.614043"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.614043"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.617100"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.617100"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.619813"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.619813"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.622851"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.622851"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.625711"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.625711"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.628539"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.628539"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.631124"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.631124"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.634225"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.634225"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.636641"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.636641"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.639804"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.639804"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 21:55:00 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (10.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.6ms)  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.667057"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.667057"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 21:55:00 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.4ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:55:00 -0400  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-29 21:55:00 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.972500"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.972500"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.975169"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.975169"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.978396"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.978396"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.980840"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.980840"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.983434"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.983434"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.985859"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.985859"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.988233"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.988233"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.990783"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.990783"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.993425"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.993425"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.996337"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.996337"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:00.999019"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.999019"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.002176"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.002176"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.004730"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.004730"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.007066"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.007066"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.009732"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.009732"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.012151"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.012151"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.015264"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.015264"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.017791"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.017791"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.021219"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.021219"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.023821"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.023821"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.026331"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.026331"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.029788"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.029788"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.032704"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.032704"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.035222"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.035222"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.037569"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.037569"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.040487"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.040487"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.042842"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.042842"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.045386"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.045386"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.047829"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.047829"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.050296"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.050296"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 01:55:01.053705"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.053705"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 21:55:01 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (12.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.7ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-29 21:55:01 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (15.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-29 21:55:01 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (14.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.5ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:31 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (8.2ms) Rendered people/index.html.haml within layouts/application (23.1ms) Rendered application/_flash_messages.html.haml (8.8ms) Completed 200 OK in 54ms (Views: 50.4ms | ActiveRecord: 0.5ms)  (53.6ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.740138"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.740138"]]  (103.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.848724"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.848724"]]  (9.1ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.860739"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.860739"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.865224"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.865224"]]  (4.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.871303"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.871303"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.876530"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.876530"]]  (4.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.883008"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.883008"]]  (9.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.894414"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.894414"]]  (9.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.905810"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.905810"]]  (5.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.912718"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.912718"]]  (8.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.923971"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.923971"]]  (9.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.935801"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.935801"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.939761"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.939761"]]  (6.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.948088"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.948088"]]  (5.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.955928"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.955928"]]  (1.1ms) commit transaction  (0.2ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.960659"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.960659"]]  (4.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.968163"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.968163"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.974948"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.974948"]]  (6.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.983970"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.983970"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.988426"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.988426"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.992513"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.992513"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.996122"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.996122"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:31.999654"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:31.999654"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:32.003197"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:32.003197"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:32.006458"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:32.006458"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:32.009362"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:32.009362"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:32.012960"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:32.012960"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:32.016978"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:32.016978"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:32.020734"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:32.020734"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:32.024161"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:32.024161"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:32.027529"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:32.027529"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:32 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (12.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.8ms | ActiveRecord: 0.8ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-29 23:13:32 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (13.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.8ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-29 23:13:32 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (15.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 19ms (Views: 17.3ms | ActiveRecord: 0.5ms)  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:32 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (67.2ms) Rendered people/index.html.haml within layouts/application (69.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 72ms (Views: 70.7ms | ActiveRecord: 0.2ms)  (1.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:32.197432"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:32.197432"]]  (1.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:34 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (9.3ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 17ms (Views: 13.2ms | ActiveRecord: 0.8ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 23:13:34 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-29 23:13:34 -0400  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.169090"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.169090"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.172332"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.172332"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.175005"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.175005"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.178014"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.178014"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.180794"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.180794"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.184702"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.184702"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.187967"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.187967"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.191487"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.191487"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.194098"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.194098"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.196510"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.196510"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.199851"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.199851"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.203455"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.203455"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.207234"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.207234"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.209645"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.209645"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.211979"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.211979"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.214304"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.214304"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.216583"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.216583"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.220110"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.220110"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.223719"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.223719"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.226225"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.226225"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.229693"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.229693"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.232231"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.232231"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.234685"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.234685"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.237212"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.237212"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.239731"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.239731"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.242243"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.242243"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.244969"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.244969"]]  (1.0ms) commit transaction  (0.2ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.247642"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.247642"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.250025"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.250025"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.252345"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.252345"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.255006"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.255006"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.6ms)  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.283353"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.283353"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.286417"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.286417"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.288969"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.288969"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.291600"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.291600"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.294131"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.294131"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.296549"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.296549"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.298879"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.298879"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.301812"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.301812"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.304325"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.304325"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.306729"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.306729"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.309202"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.309202"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.311654"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.311654"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.314188"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.314188"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.317773"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.317773"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.320330"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.320330"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.322769"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.322769"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.325282"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.325282"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.327576"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.327576"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.329901"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.329901"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.333276"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.333276"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.336427"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.336427"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.339500"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.339500"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.342122"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.342122"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.344653"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.344653"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.347172"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.347172"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.350272"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.350272"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.353028"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.353028"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.355827"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.355827"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.358403"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.358403"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.360845"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.360845"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.363453"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.363453"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (15.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 1.0ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-29 23:13:35 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.4ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (9.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 10.9ms | ActiveRecord: 0.8ms)  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.904194"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.904194"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.906805"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.906805"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.909148"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.909148"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.912121"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.912121"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.915086"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.915086"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.917629"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.917629"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.919894"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.919894"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.922229"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.922229"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.924879"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.924879"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.927425"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.927425"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.929886"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.929886"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.932695"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.932695"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.935264"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.935264"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.937802"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.937802"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.940118"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.940118"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.942587"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.942587"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.945040"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.945040"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.947310"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.947310"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.950548"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.950548"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.953143"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.953143"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.955578"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.955578"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.957872"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.957872"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.960543"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.960543"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.962871"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.962871"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.966227"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.966227"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.970038"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.970038"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.973181"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.973181"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.976106"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.976106"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.978828"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.978828"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.981844"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.981844"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:35.984715"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:35.984715"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (14.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 15.4ms | ActiveRecord: 1.0ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-29 23:13:36 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (61.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 64ms (Views: 62.1ms | ActiveRecord: 0.9ms)  (1.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.920337"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.920337"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.923606"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.923606"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.926385"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.926385"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.929028"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.929028"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.931405"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.931405"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.933728"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.933728"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.936168"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.936168"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.939414"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.939414"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.941856"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.941856"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.944229"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.944229"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.946565"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.946565"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.948831"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.948831"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.951266"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.951266"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.954145"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.954145"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.956895"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.956895"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.959169"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.959169"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.961283"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.961283"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.963474"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.963474"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.965943"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.965943"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.968415"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.968415"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.970882"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.970882"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.973335"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.973335"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.975874"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.975874"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.978252"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.978252"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.980541"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.980541"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.982889"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.982889"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.985129"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.985129"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.987733"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.987733"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.990194"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.990194"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.993101"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.993101"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:37.996605"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:37.996605"]]  (1.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:38 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (10.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-29 23:13:38 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (16.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 21ms (Views: 17.7ms | ActiveRecord: 1.0ms)  (1.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.751774"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.751774"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.754441"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.754441"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.757015"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.757015"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.759404"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.759404"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.761615"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.761615"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.763776"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.763776"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.766540"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.766540"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.768919"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.768919"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.771136"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.771136"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.773371"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.773371"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.775568"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.775568"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.777879"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.777879"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.780125"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.780125"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.782813"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.782813"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.785549"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.785549"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.788288"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.788288"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.790723"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.790723"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.792973"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.792973"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.796365"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.796365"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.799036"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.799036"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.801829"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.801829"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.805246"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.805246"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.807650"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.807650"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.810259"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.810259"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.812823"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.812823"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.815158"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.815158"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.817581"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.817581"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.820808"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.820808"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.823163"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.823163"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.825830"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.825830"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:38.828404"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:38.828404"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-29 23:13:38 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (9.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-29 23:13:39 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (12.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.8ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-29 23:13:39 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (11.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.0ms | ActiveRecord: 0.6ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-29 23:13:40 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.5ms) Rendered people/index.html.haml within layouts/application (13.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.6ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms)  (1.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-29 23:13:41 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.543733"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.543733"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.547541"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.547541"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.550680"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.550680"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.553344"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.553344"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.555963"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.555963"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.558540"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.558540"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.561417"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.561417"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.564258"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.564258"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.566898"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.566898"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.569514"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.569514"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.572932"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.572932"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.575364"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_31@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.575364"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.578002"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.578002"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.580597"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.580597"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.584062"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.584062"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.586908"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.586908"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.589578"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.589578"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.592179"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.592179"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.594716"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.594716"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.597268"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.597268"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.599970"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.599970"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.602561"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.602561"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.605964"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.605964"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.608667"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.608667"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.611180"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.611180"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.613710"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.613710"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.617077"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.617077"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.619732"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_66@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.619732"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.622313"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.622313"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.624933"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.624933"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.628890"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.628890"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.632116"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.632116"]]  (14.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.648787"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.648787"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.652476"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.652476"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.655816"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.655816"]]  (5.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.663631"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.663631"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.666833"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.666833"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.669848"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.669848"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.672530"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.672530"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.675289"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.675289"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.679182"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.679182"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.682111"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.682111"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.685230"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.685230"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.688259"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.688259"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.691043"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.691043"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.693997"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.693997"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.697836"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.697836"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.700890"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.700890"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.704627"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.704627"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:41.707506"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoesemail_20@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:41.707506"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (12.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.7ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-29 23:13:41 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (12.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.6ms | ActiveRecord: 0.9ms)  (1.8ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.5ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:43.020734"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_188@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:43.020734"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:43.023434"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_189@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:43.023434"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:43.026115"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_190@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:43.026115"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:43.028577"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_191@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:43.028577"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:43.031056"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:43.031056"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-29 23:13:43 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.4ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:43.065762"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:43.065762"]]  (1.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 23:13:43 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (19.3ms) Rendered people/edit.html.haml within layouts/application (21.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.1ms)  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:43.108780"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:43.108780"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.0ms) Rendered people/index.html.haml within layouts/application (12.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.4ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-29 23:13:43 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:52715/people Completed 302 Found in 5ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.6ms) Rendered application/_search_form.html.haml (0.8ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.2ms)  (0.3ms) SELECT COUNT(*) FROM "people"  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-29 23:13:44 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.1ms) Rendered people/new.html.haml within layouts/application (7.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-29 23:13:44 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"03", "dob(5i)"=>"13", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.6ms) Rendered people/_form.html.haml (6.4ms) Rendered people/new.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 14ms (Views: 8.3ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-29 23:13:44 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.3ms) Rendered people/new.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)  (1.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:45.001129"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:45.001129"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 23:13:45 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.4ms) Rendered people/edit.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-29 23:13:45 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (9.0ms) Rendered people/new.html.haml within layouts/application (9.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-29 23:13:45 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"29", "dob(4i)"=>"23", "dob(5i)"=>"13", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:45.870914"], ["dob", "2012-07-29 23:13:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:45.870914"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:52715/people Completed 302 Found in 6ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.6ms)  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:46.821811"], ["dob", "2012-07-30 03:13:46.820889"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:46.821811"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 23:13:46 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.9ms) Rendered people/edit.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-29 23:13:46 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"29", "dob(4i)"=>"23", "dob(5i)"=>"13", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-29 23:13:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-30 03:13:46.856095"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:46 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.3ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-29 23:13:46 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (10.6ms) Rendered people/new.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-29 23:13:46 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"03", "dob(5i)"=>"13", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:46.914419"], ["dob", "2014-07-30 03:13:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-30 03:13:46.914419"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-29 23:13:46 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (6.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 7.8ms | ActiveRecord: 0.6ms)  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:46.939823"], ["dob", "1984-07-30 03:13:28.850402"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:13:46.939823"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 23:13:46 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (9.0ms) Rendered people/edit.html.haml within layouts/application (9.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-29 23:13:46 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"03", "dob(5i)"=>"13", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-30 03:13:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-30 03:13:46.965464"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 2.0ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 23:13:46 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.6ms) Rendered people/edit.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.1ms)  (1.6ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-29 23:13:46 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.2ms) Rendered people/new.html.haml within layouts/application (8.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-29 23:13:47 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"03", "dob(5i)"=>"13", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:13:47.013506"], ["dob", "2014-07-30 03:13:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-30 03:13:47.013506"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 3ms (ActiveRecord: 1.3ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-29 23:13:47 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.1ms) Rendered people/new.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:07 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (2.4ms) Rendered application/_search_form.html.haml (2.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (13.4ms) Rendered people/index.html.haml within layouts/application (38.4ms) Rendered application/_flash_messages.html.haml (9.5ms) Completed 200 OK in 77ms (Views: 71.2ms | ActiveRecord: 0.7ms)  (58.8ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:07.948375"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:07.948375"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:07.953925"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:07.953925"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:07.957193"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:07.957193"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:07.960223"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:07.960223"]]  (11.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:07.974275"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:07.974275"]]  (13.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:07.990337"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:07.990337"]]  (9.2ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.002100"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.002100"]]  (9.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.013668"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.013668"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.017865"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.017865"]]  (5.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.025688"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.025688"]]  (26.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.054425"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.054425"]]  (7.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.064151"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.064151"]]  (5.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.071958"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.071958"]]  (4.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.078460"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.078460"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.083980"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.083980"]]  (4.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.094110"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.094110"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (1.0ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.099033"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.099033"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.103603"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.103603"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.107000"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.107000"]]  (8.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.117272"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.117272"]]  (7.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.127877"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.127877"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.132505"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.132505"]]  (6.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.141582"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.141582"]]  (5.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.149362"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.149362"]]  (8.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.159735"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.159735"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.162312"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.162312"]]  (6.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.171118"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.171118"]]  (4.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.177801"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.177801"]]  (9.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.189857"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.189857"]]  (8.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.201221"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.201221"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.206336"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.206336"]]  (6.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (12.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.0ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-29 23:14:08 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (10.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.5ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-29 23:14:08 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (13.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.5ms)  (1.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:08.358967"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:08.358967"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 17ms (Views: 13.7ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 23:14:11 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-29 23:14:11 -0400  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.5ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.835047"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.835047"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.838167"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.838167"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.840861"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.840861"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.843366"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.843366"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.845661"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.845661"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.848083"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.848083"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.850583"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.850583"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.852837"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.852837"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.855292"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.855292"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.858154"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.858154"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.860790"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.860790"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.863366"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.863366"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.865745"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.865745"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.868436"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.868436"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.871182"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.871182"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.874020"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.874020"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.876573"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.876573"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.879097"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.879097"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.881349"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.881349"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.883727"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.883727"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.886194"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.886194"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.888889"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.888889"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.891701"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.891701"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.894288"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.894288"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.897066"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.897066"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.899857"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.899857"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.902284"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.902284"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.904822"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.904822"]]  (1.0ms) commit transaction  (0.4ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.907640"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.907640"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.910204"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.910204"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.912904"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.912904"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (11.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.5ms)  (1.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.940350"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.940350"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.943023"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.943023"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.945352"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.945352"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.948608"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.948608"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.952480"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.952480"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.955112"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.955112"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.957729"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.957729"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.960473"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.960473"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.963066"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.963066"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.965546"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.965546"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.967992"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.967992"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.970370"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.970370"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.973438"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.973438"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.976110"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.976110"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.978480"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.978480"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.980955"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.980955"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.983556"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.983556"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.986116"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.986116"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.988531"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.988531"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.991175"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.991175"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.993524"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.993524"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.995832"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.995832"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:11.998165"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:11.998165"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.000485"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.000485"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.002702"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.002702"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.005189"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.005189"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.007883"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.007883"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.010269"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.010269"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.012852"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.012852"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.015717"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.015717"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.018411"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.018411"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:12 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (73.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 76ms (Views: 74.7ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-29 23:14:12 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (13.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.6ms)  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.799059"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.799059"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.802144"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.802144"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.804609"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.804609"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.807201"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.807201"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.809484"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.809484"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.811764"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.811764"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.814159"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.814159"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.816618"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.816618"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.819181"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.819181"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.821419"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.821419"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.823572"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.823572"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.825799"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.825799"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.828228"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.828228"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.830576"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.830576"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.833136"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.833136"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.835671"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.835671"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.838287"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.838287"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.840497"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.840497"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.842863"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.842863"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.845230"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.845230"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.847725"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.847725"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.850215"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.850215"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.852738"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.852738"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.855132"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.855132"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.857999"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.857999"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.860376"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.860376"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.862733"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.862733"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.865017"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.865017"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.867204"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.867204"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.869719"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.869719"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:12.872242"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:12.872242"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:12 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (13.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.9ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-29 23:14:13 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (10.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.6ms)  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.312688"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.312688"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.316790"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.316790"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.320544"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.320544"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.323243"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.323243"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.325729"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.325729"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.328017"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.328017"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.330354"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.330354"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.332913"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.332913"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.335391"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.335391"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.337740"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.337740"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.340080"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.340080"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.342641"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.342641"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.345425"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.345425"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.348199"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.348199"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.354785"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.354785"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.358295"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.358295"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.361214"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.361214"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.363850"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.363850"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.366888"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.366888"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.369774"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.369774"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.373078"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.373078"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.376086"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.376086"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.379210"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.379210"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.382048"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.382048"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.384630"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.384630"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.387184"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.387184"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.389778"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.389778"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.393222"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.393222"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.396446"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.396446"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.399209"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.399209"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:13.401820"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:13.401820"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (12.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-29 23:14:13 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.4ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (17.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 21ms (Views: 18.3ms | ActiveRecord: 1.2ms)  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.134063"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.134063"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.136628"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.136628"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.138845"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.138845"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.142132"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.142132"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.144681"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.144681"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.146926"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.146926"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.149252"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.149252"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.151793"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.151793"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.154304"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.154304"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.156667"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.156667"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.158982"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.158982"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.161396"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.161396"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.163710"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.163710"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.166203"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.166203"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.169174"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.169174"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.171697"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.171697"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.174079"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.174079"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.176410"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.176410"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.178776"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.178776"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.181026"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.181026"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.184305"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.184305"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.186859"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.186859"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.189284"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.189284"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.192638"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.192638"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.195053"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.195053"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.197482"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.197482"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.199848"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.199848"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.203023"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.203023"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.205496"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.205496"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.207786"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.207786"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:14.210272"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:14.210272"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-29 23:14:14 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (12.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.8ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-29 23:14:14 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (10.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.6ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-29 23:14:15 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (12.5ms) Rendered people/index.html.haml within layouts/application (19.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.6ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-29 23:14:15 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (10.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.6ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:16.477631"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:16.477631"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 7.9ms | ActiveRecord: 0.5ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 23:14:16 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (17.6ms) Rendered people/edit.html.haml within layouts/application (19.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:16.524934"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:16.524934"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-29 23:14:17 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.5ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.4ms) commit transaction Redirected to http://127.0.0.1:53258/people Completed 302 Found in 5ms (ActiveRecord: 2.1ms) Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (8.6ms) Rendered people/index.html.haml within layouts/application (13.0ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.5ms)  (0.3ms) SELECT COUNT(*) FROM "people"  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms)  (1.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)  (1.8ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-29 23:14:18 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.2ms)  (36.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.723709"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.723709"]]  (8.3ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.735807"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.735807"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.739858"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.739858"]]  (12.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.755022"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.755022"]]  (5.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.762728"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.762728"]]  (13.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.778477"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.778477"]]  (8.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.790775"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.790775"]]  (7.4ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.801397"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.801397"]]  (13.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.818388"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.818388"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.822680"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.822680"]]  (20.1ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.845680"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.845680"]]  (11.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.860001"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.860001"]]  (7.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.870804"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.870804"]]  (7.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.881036"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.881036"]]  (9.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.893200"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.893200"]]  (10.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.906206"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.906206"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.910113"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.910113"]]  (17.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.930090"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.930090"]]  (11.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.943724"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.943724"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.946838"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.946838"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.950277"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.950277"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.953735"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.953735"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.956720"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.956720"]]  (34.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.994070"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.994070"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:18.998183"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:18.998183"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.001905"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.001905"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.005310"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.005310"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.008634"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.008634"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.012198"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.012198"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.016925"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.016925"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.020773"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.020773"]]  (65.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.088886"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.088886"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.092715"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.092715"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.096268"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.096268"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.099832"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.099832"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.102899"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_20@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.102899"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.106086"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.106086"]]  (70.5ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.179134"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.179134"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.183315"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.183315"]]  (6.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.192112"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.192112"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.195927"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.195927"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.199616"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.199616"]]  (50.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.253065"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.253065"]]  (9.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.265905"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.265905"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.269906"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.269906"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.273184"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.273184"]]  (10.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.286569"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.286569"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.291076"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.291076"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.295193"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.295193"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:19.298652"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:19.298652"]]  (7.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (10.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.1ms | ActiveRecord: 0.6ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-29 23:14:19 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (8.1ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (7.9ms) Rendered people/index.html.haml within layouts/application (25.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 29ms (Views: 26.7ms | ActiveRecord: 1.0ms)  (1.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:20.977946"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_190@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:20.977946"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:20.982116"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_191@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:20.982116"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:20.985120"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_192@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:20.985120"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:20.987670"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_193@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:20.987670"]]  (1.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:20.990797"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:20.990797"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (5.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-29 23:14:21 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-29 23:14:21 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.9ms) Rendered people/new.html.haml within layouts/application (8.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-29 23:14:21 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"03", "dob(5i)"=>"14", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (1.5ms) Rendered people/_form.html.haml (6.7ms) Rendered people/new.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 14ms (Views: 8.3ms | ActiveRecord: 0.1ms)  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-29 23:14:21 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.5ms) Rendered people/new.html.haml within layouts/application (7.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:21.090318"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:21.090318"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 23:14:21 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.9ms) Rendered people/edit.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-29 23:14:21 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.7ms) Rendered people/new.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-29 23:14:21 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"29", "dob(4i)"=>"23", "dob(5i)"=>"14", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:21.944735"], ["dob", "2012-07-29 23:14:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:21.944735"]]  (1.0ms) commit transaction Redirected to http://127.0.0.1:53258/people Completed 302 Found in 5ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:21 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.3ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:22.918278"], ["dob", "2012-07-30 03:14:22.917304"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:22.918278"]]  (1.3ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 23:14:22 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.7ms) Rendered people/edit.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-29 23:14:22 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"29", "dob(4i)"=>"23", "dob(5i)"=>"14", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-29 23:14:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-30 03:14:22.951722"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 1.8ms) Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:22 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.0ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-29 23:14:22 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.6ms) Rendered people/new.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-29 23:14:23 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"03", "dob(5i)"=>"14", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:23.003230"], ["dob", "2014-07-30 03:14:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-30 03:14:23.003230"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-29 23:14:23 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (3.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.3ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-29 23:14:23 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.8ms) Rendered people/new.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-29 23:14:23 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"03", "dob(5i)"=>"14", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:23.042195"], ["dob", "2014-07-30 03:14:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-30 03:14:23.042195"]]  (1.2ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.6ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-29 23:14:23 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (14.7ms) Rendered people/new.html.haml within layouts/application (14.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.0ms)  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 03:14:23.081797"], ["dob", "1984-07-30 03:14:05.110993"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 03:14:23.081797"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 23:14:23 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.6ms) Rendered people/edit.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-29 23:14:23 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"03", "dob(5i)"=>"14", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-30 03:14:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-30 03:14:23.104693"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 23:14:23 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.6ms) Rendered people/edit.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.1ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (5.7ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------- ControllerScaffoldingTest: test_truth -------------------------------------  (0.0ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (14.3ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 16:45:50 -0400  (1.9ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:51.101517"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:51.101517"]]  (1.1ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 16:45:51 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 21ms  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 16:45:51 -0400 Processing by PeopleController#new as HTML Completed 500 Internal Server Error in 1ms  (1.7ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 16:45:51 -0400 Processing by PeopleController#new as HTML Completed 500 Internal Server Error in 1ms  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:51.160507"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:51.160507"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 16:45:51 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 1ms  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 16:45:51 -0400 Processing by PeopleController#new as HTML Completed 500 Internal Server Error in 1ms  (1.6ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:51.175389"], ["dob", "2012-07-30 20:45:51.174437"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:51.175389"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 16:45:51 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 1ms  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 16:45:54 -0400 Processing by PeopleController#new as HTML Completed 500 Internal Server Error in 1ms  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 16:45:54 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 2ms  (1.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 16:45:54 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 2ms  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 16:45:54 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 2ms  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 16:45:54 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 2ms  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.897240"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_4@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.897240"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.900947"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_5@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.900947"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.904069"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_6@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.904069"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.906896"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_7@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.906896"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.909570"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.909570"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:45:54 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 2ms  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.919884"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.919884"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.923904"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.923904"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.927860"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.927860"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.930690"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.930690"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.933803"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.933803"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.937397"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.937397"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.940548"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.940548"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.943543"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.943543"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.946666"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.946666"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.950565"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.950565"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.954687"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.954687"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.958717"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.958717"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.961844"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.961844"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.964743"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.964743"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.967363"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.967363"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.970085"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.970085"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.973459"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.973459"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.976404"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.976404"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.979073"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.979073"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.981820"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.981820"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.985229"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.985229"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.987842"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.987842"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.990566"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.990566"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.993486"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.993486"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.996231"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.996231"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:54.998972"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:54.998972"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.001634"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.001634"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.004266"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.004266"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (29.0ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.007447"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.007447"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.040551"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.040551"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.044159"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.044159"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.047481"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.047481"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.050559"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.050559"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.054545"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.054545"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.057877"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.057877"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.060994"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.060994"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.064177"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.064177"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.067137"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.067137"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.070052"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.070052"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.073136"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.073136"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.076339"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.076339"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.079491"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.079491"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.082428"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.082428"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.085280"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.085280"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.088068"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.088068"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.090816"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.090816"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.093651"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.093651"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.097527"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.097527"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.100763"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.100763"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.103879"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.103879"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:45:55 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 3ms  (2.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.211267"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.211267"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:45:55 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 3ms  (0.2ms) SELECT COUNT(*) FROM "people"  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.356842"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.356842"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:45:55 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 2ms  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.367389"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.367389"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.369900"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.369900"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.372434"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.372434"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.375169"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.375169"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.377689"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.377689"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.380024"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.380024"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.382423"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.382423"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.384744"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.384744"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.387108"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.387108"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.389667"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.389667"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.392212"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.392212"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.395618"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.395618"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.398377"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.398377"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.402124"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.402124"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.404585"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.404585"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.406993"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.406993"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.409494"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.409494"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.411916"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.411916"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.414313"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.414313"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.416619"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.416619"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.418917"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.418917"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.421409"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.421409"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.423812"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.423812"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.426209"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.426209"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.429353"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.429353"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.432384"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.432384"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.434807"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.434807"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.437058"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.437058"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.439345"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.439345"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.442587"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.442587"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.445907"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.445907"]]  (1.2ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 16:45:55 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Completed 500 Internal Server Error in 2ms  (3.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.601035"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.601035"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.603718"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.603718"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.606468"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.606468"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.609251"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.609251"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.611897"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.611897"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.615531"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.615531"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.618106"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.618106"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.620790"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.620790"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.623251"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.623251"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.625680"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.625680"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.627997"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.627997"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.630472"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.630472"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.632937"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.632937"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.635324"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.635324"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.637686"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.637686"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.640766"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.640766"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.643803"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.643803"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.646457"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.646457"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.649550"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.649550"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.651870"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.651870"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.654326"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.654326"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.656832"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.656832"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.659354"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.659354"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.661699"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.661699"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.664130"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.664130"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.667370"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.667370"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.669864"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.669864"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.672206"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.672206"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.674633"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.674633"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.677182"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.677182"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.680757"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.680757"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:45:55 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.783488"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.783488"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.786474"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.786474"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.789135"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.789135"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.793320"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.793320"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.795793"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.795793"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.798528"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.798528"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.801161"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.801161"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.804638"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.804638"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.807189"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.807189"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.809649"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.809649"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.812121"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.812121"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.814662"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.814662"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.817123"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.817123"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.878951"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.878951"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.881407"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.881407"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.883856"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.883856"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.887462"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.887462"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.890853"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.890853"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.893265"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.893265"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.895708"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.895708"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.899425"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.899425"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.902245"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.902245"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.904784"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.904784"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.907680"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.907680"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.909975"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.909975"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.912512"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.912512"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.916063"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.916063"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.919082"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.919082"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.921599"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.921599"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.924167"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.924167"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:55.927532"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:55.927532"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:45:55 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (2.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.018362"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.018362"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.021452"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.021452"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.024324"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.024324"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.026856"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.026856"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.029215"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.029215"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.031562"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.031562"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.033862"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.033862"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.036351"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.036351"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.038844"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.038844"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.042017"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.042017"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.044486"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.044486"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.047115"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.047115"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.049652"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.049652"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.052146"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.052146"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.054620"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.054620"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.057643"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.057643"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.060132"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.060132"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.062696"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.062696"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.065151"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.065151"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.067389"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.067389"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.070509"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.070509"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.073032"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.073032"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.075553"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.075553"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.077853"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.077853"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.080216"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.080216"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.082611"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.082611"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.085210"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.085210"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.088836"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.088836"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.092613"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.092613"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.095569"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.095569"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.098190"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.098190"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:45:56 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.212228"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.212228"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.215320"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.215320"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.218454"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.218454"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.221153"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.221153"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.224108"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.224108"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.226710"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.226710"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.229507"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.229507"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.232173"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.232173"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.234742"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.234742"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.237307"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.237307"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.239694"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.239694"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.242177"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.242177"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.244678"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.244678"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.247627"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.247627"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.250679"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.250679"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.253357"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.253357"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.257750"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.257750"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.261165"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.261165"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.264503"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.264503"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.267222"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.267222"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.271323"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.271323"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.275611"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.275611"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.278914"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.278914"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.281725"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.281725"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.284630"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.284630"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.288269"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.288269"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.292068"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.292068"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.294825"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.294825"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.297799"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.297799"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.300126"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.300126"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.303133"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.303133"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:45:56 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.8ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 16:45:56 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 2ms  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.322937"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.322937"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:45:56 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 2ms  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (2.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.452140"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.452140"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.457697"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.457697"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.460037"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.460037"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.462317"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.462317"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.465260"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.465260"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.467658"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.467658"]]  (1.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.470799"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.470799"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.473044"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.473044"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.475299"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.475299"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.477588"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.477588"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.479870"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.479870"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.482213"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.482213"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.484688"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.484688"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.487810"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.487810"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.491435"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.491435"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.494295"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.494295"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.496844"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.496844"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.499315"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.499315"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.502647"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.502647"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.506353"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.506353"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.508914"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.508914"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.511391"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.511391"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.513695"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.513695"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.516009"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.516009"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.518636"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.518636"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.520945"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.520945"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.523281"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.523281"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.525630"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.525630"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.528226"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.528226"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.530818"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.530818"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:45:56.533295"], ["dob", "1984-07-30 20:45:44.733334"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:45:56.533295"]]  (1.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:45:56 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 16:46:51 -0400  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 16:46:51 -0400 Processing by PeopleController#new as HTML Completed 500 Internal Server Error in 2ms  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 16:46:51 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (88.2ms) Rendered people/new.html.haml within layouts/application (114.5ms) Rendered application/_flash_messages.html.haml (10.5ms) Completed 200 OK in 250ms (Views: 248.7ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 16:46:51 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"20", "dob(5i)"=>"46", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:51.759712"], ["dob", "2014-07-30 20:46:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-30 20:46:51.759712"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 7ms (ActiveRecord: 1.5ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-30 16:46:51 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.0ms) Rendered people/new.html.haml within layouts/application (6.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms)  (1.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:51.821350"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:51.821350"]]  (1.1ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 16:46:51 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.5ms) Rendered people/edit.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.1ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 16:46:51 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"20", "dob(5i)"=>"46", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-30 20:46:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-30 20:46:51.847798"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 16:46:51 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.8ms) Rendered people/edit.html.haml within layouts/application (8.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 74ms (Views: 73.4ms | ActiveRecord: 0.1ms)  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:51.937768"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:51.937768"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 16:46:51 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.0ms) Rendered people/edit.html.haml within layouts/application (8.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.1ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 16:46:51 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.7ms) Rendered people/new.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:51.977759"], ["dob", "2012-07-30 20:46:51.976701"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:51.977759"]]  (1.1ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 16:46:51 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.8ms) Rendered people/edit.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 16:46:52 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"16", "dob(5i)"=>"46", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 16:46:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-30 20:46:52.011718"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 16:46:52 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 16:46:54 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.8ms) Rendered people/new.html.haml within layouts/application (9.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 16:46:54 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 16:46:54 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 16:46:55 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"16", "dob(5i)"=>"46", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.472620"], ["dob", "2012-07-30 16:46:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.472620"]]  (1.0ms) commit transaction Redirected to http://127.0.0.1:49404/people Completed 302 Found in 5ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 16:46:55 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 16:46:55 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 0ms  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.594667"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.594667"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.597236"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.597236"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.599676"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.599676"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.602081"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.602081"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.604612"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.604612"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.607394"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.607394"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.609891"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.609891"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.612395"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.612395"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.614698"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.614698"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.617168"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.617168"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.619979"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.619979"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.622461"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.622461"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.625413"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.625413"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.628964"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.628964"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.632174"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.632174"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.634770"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.634770"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.637429"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.637429"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.639892"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.639892"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.642516"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.642516"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.645013"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.645013"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.647391"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.647391"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.650240"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.650240"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.653452"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.653452"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.656016"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.656016"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.658506"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.658506"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.660929"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.660929"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.663330"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.663330"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.667030"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.667030"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.669615"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.669615"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.673071"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.673071"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.675719"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.675719"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 16:46:55 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Completed 500 Internal Server Error in 0ms  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.787104"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.787104"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.789599"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.789599"]]  (0.9ms) commit transaction  (0.5ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.792504"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.792504"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.796321"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.796321"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.798827"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.798827"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.801175"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.801175"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.803644"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.803644"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.806014"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.806014"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.808587"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.808587"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.810990"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.810990"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.813208"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.813208"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.815576"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.815576"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.818709"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.818709"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.821366"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.821366"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.824268"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.824268"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.827737"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.827737"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.830561"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.830561"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.833134"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.833134"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.835442"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.835442"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.837919"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.837919"]]  (0.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.840099"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.840099"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.842539"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.842539"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.844923"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.844923"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.847718"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.847718"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.850122"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.850122"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.852531"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.852531"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.855116"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.855116"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.857513"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.857513"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.859987"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.859987"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.863701"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.863701"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.866393"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.866393"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:46:55 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 0ms  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.875631"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.875631"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.878380"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.878380"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.881016"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.881016"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.883476"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.883476"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.885881"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.885881"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.888419"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.888419"]]  (8.0ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.899155"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.899155"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.903303"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.903303"]]  (8.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.913874"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.913874"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.917224"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.917224"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.921730"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.921730"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.925325"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.925325"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.927908"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.927908"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.930498"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.930498"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.934029"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.934029"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.937373"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.937373"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.939879"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.939879"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.943653"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.943653"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.946914"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.946914"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.949537"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.949537"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.952000"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.952000"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.954391"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.954391"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.957716"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.957716"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.960612"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.960612"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.962974"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.962974"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.965416"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.965416"]]  (6.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.973655"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.973655"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.976215"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.976215"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.978592"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.978592"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.981002"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.981002"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:55.984306"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:55.984306"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:46:55 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.6ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.078575"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.078575"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.081459"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.081459"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.084033"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.084033"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.086876"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.086876"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.089808"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.089808"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.092256"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.092256"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.095077"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.095077"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.097581"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.097581"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.099908"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.099908"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.102377"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.102377"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.104731"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.104731"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.107343"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.107343"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.109878"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.109878"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.112875"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.112875"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.115235"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.115235"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.117924"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.117924"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.121143"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.121143"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.124062"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.124062"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.126440"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.126440"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.128928"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.128928"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.131683"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.131683"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.135059"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.135059"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.137414"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.137414"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.139937"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.139937"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.142324"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.142324"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.144772"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.144772"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.147242"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.147242"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.149817"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.149817"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.153460"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.153460"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.155888"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.155888"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.158446"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.158446"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:46:56 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.6ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.256122"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.256122"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.258668"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.258668"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.261289"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.261289"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.265227"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.265227"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.268556"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.268556"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.271038"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.271038"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.273422"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.273422"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.275791"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.275791"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.278121"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.278121"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.280470"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.280470"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.284271"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.284271"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.286744"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.286744"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.289408"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.289408"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.292554"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.292554"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.296051"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.296051"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.299142"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.299142"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.301917"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.301917"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.304411"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.304411"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.307019"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.307019"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.309416"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.309416"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.311751"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.311751"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.314140"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.314140"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.316370"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.316370"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.318785"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.318785"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.322218"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.322218"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.324684"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.324684"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.326897"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.326897"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.330593"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.330593"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.333000"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.333000"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.335405"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.335405"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:46:56.338059"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:46:56.338059"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:46:56 -0400  (3.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.453649"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.453649"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.456321"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.456321"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.458782"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.458782"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.461401"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.461401"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.464167"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.464167"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.466822"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.466822"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.469166"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.469166"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.471547"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.471547"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.474263"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.474263"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.477867"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.477867"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.480285"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.480285"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.482790"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.482790"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.485363"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.485363"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.488364"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.488364"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.490699"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.490699"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.493738"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.493738"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.497094"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.497094"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.499831"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.499831"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.503356"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.503356"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.505974"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.505974"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.508307"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.508307"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.510736"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.510736"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.513351"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.513351"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.515895"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.515895"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.519482"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.519482"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.521970"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.521970"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.524348"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.524348"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.526565"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.526565"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.529506"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.529506"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.532406"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.532406"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.534921"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.534921"]]  (1.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:47:06 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:06.546381"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_190@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:06.546381"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:47:06 -0400  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 16:47:16 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:16.683082"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_191@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:16.683082"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:47:16 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:26.807402"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_192@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:26.807402"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:47:26 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 0ms  (1.2ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 16:47:26 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 0ms  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 16:47:26 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.1ms) DELETE FROM "people";  (0.9ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 16:47:26 -0400  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.926972"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_193@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.926972"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.929541"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_194@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.929541"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.932029"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_195@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.932029"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.935593"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoe_196@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.935593"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.938082"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.938082"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:47:36 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 0ms  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.946637"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.946637"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.949366"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.949366"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.951954"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.951954"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.954607"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.954607"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.957245"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.957245"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.959863"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.959863"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.962443"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.962443"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.965518"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.965518"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.968150"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.968150"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.970862"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.970862"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.973861"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.973861"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.977887"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.977887"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.981442"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.981442"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.985418"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.985418"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.989009"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.989009"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.992635"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.992635"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.995859"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.995859"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:36.998656"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:36.998656"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.001514"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.001514"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.005057"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.005057"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.008190"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.008190"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.010840"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.010840"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.013462"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.013462"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.017104"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.017104"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.020618"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.020618"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.024239"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.024239"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.027449"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.027449"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.030133"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.030133"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.032849"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.032849"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.035642"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.035642"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.038325"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.038325"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.041330"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.041330"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.044237"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.044237"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.047989"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.047989"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.050906"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.050906"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.054602"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.054602"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.058000"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.058000"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.061025"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.061025"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.064385"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.064385"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.067474"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.067474"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.071305"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.071305"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.074210"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.074210"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.076836"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.076836"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.079697"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.079697"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.082567"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.082567"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.085302"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.085302"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.088031"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.088031"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.090801"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.090801"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.093567"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.093567"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 20:47:37.096455"], ["dob", "1984-07-30 20:46:34.263116"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 20:47:37.096455"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 16:47:37 -0400  (1.6ms) CREATE TABLE "temp_people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "email" varchar(255), "title" varchar(255), "dob" datetime, "is_manager" boolean, "created_at" datetime, "updated_at" datetime)   (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) select sqlite_version(*)  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.2ms) SELECT version FROM "schema_migrations"  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140711034542') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.7ms) DELETE FROM "temp_people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 17:31:46 -0400  (1.0ms) DELETE FROM "temp_people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people';  (1.1ms) DELETE FROM "temp_people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 17:31:46 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.1ms) DELETE FROM "temp_people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people';  (1.0ms) DELETE FROM "temp_people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people';  (1.0ms) DELETE FROM "temp_people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people';  (1.0ms) DELETE FROM "temp_people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people';  (1.0ms) DELETE FROM "temp_people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people';  (1.0ms) DELETE FROM "temp_people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people';  (1.0ms) DELETE FROM "temp_people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 17:31:46 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 0ms  (1.1ms) DELETE FROM "temp_people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 17:31:49 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 2ms  (1.1ms) DELETE FROM "temp_people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 17:31:49 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.9ms) DELETE FROM "temp_people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people';  (0.9ms) DELETE FROM "temp_people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people';  (1.2ms) DELETE FROM "temp_people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people';  (1.6ms) DELETE FROM "temp_people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people';  (1.1ms) DELETE FROM "temp_people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 17:31:49 -0400 Processing by PeopleController#new as HTML Completed 500 Internal Server Error in 1ms  (1.1ms) DELETE FROM "temp_people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 17:31:49 -0400 Processing by PeopleController#new as HTML Completed 500 Internal Server Error in 1ms  (1.1ms) DELETE FROM "temp_people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people';  (0.9ms) DELETE FROM "temp_people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 17:31:49 -0400 Processing by PeopleController#new as HTML Completed 500 Internal Server Error in 1ms  (1.0ms) DELETE FROM "temp_people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people';  (1.3ms) DELETE FROM "temp_people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 17:31:49 -0400 Processing by PeopleController#new as HTML Completed 500 Internal Server Error in 1ms  (1.1ms) DELETE FROM "temp_people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people';  (0.9ms) DELETE FROM "temp_people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'temp_people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 17:31:49 -0400 Processing by PeopleController#new as HTML Completed 500 Internal Server Error in 1ms  (1.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "email" varchar(255), "title" varchar(255), "dob" datetime, "is_manager" boolean, "created_at" datetime, "updated_at" datetime)   (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) select sqlite_version(*)  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140711034542') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 18:42:40 -0400  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:40.276310"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:40.276310"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 18:42:43 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 3ms  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 18:42:43 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.679150"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.679150"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.682286"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.682286"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.685065"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.685065"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.688003"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.688003"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.690775"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.690775"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.693706"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.693706"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.696419"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.696419"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.699149"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.699149"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.701792"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.701792"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.704909"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.704909"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.708421"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.708421"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.711321"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.711321"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.714218"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.714218"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.717123"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.717123"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.720857"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.720857"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.723452"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.723452"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.725943"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.725943"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.728577"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.728577"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.732248"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.732248"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.735537"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.735537"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.738281"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.738281"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.741918"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.741918"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.745427"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.745427"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.748164"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.748164"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.751444"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.751444"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.753981"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.753981"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.756589"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.756589"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.758861"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.758861"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.761245"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.761245"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.764321"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.764321"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.767108"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.767108"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 18:42:43 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.777984"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.777984"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.781676"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.781676"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.784125"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.784125"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.786422"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.786422"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.789841"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.789841"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.792487"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.792487"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.795006"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.795006"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.797584"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.797584"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.800136"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.800136"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.802669"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.802669"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.805290"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.805290"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.807967"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.807967"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.810777"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.810777"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.813755"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.813755"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.816794"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.816794"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.819507"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.819507"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.822123"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.822123"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.824672"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.824672"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.827041"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.827041"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.829569"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.829569"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.832961"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.832961"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.835431"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.835431"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.837785"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.837785"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.840344"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.840344"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.842864"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.842864"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.845429"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.845429"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.847988"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.847988"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.850540"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.850540"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.852971"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.852971"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.856644"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.856644"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.859325"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.859325"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 18:42:43 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.960112"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.960112"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.962757"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.962757"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.965254"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.965254"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.967844"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.967844"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.970452"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.970452"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.973855"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.973855"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.976472"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.976472"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.978885"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.978885"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.981494"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.981494"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.983921"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.983921"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.986708"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.986708"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.989385"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.989385"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.992766"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.992766"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.996650"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.996650"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:43.999930"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:43.999930"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.003496"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.003496"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.006578"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.006578"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.009504"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.009504"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.012122"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.012122"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.014608"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.014608"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.018466"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.018466"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.021315"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.021315"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.023940"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.023940"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.026818"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.026818"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.029501"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.029501"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.031945"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.031945"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.034385"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.034385"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.037468"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.037468"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.040414"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.040414"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.043031"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.043031"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.045755"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.045755"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 18:42:44 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.138938"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.138938"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.141829"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.141829"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.144365"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.144365"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.146765"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.146765"]]  (28.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.177041"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.177041"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.180574"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.180574"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.183779"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.183779"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.186846"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.186846"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.189839"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.189839"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.192870"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.192870"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.195672"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.195672"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.198726"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.198726"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.202257"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.202257"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.205645"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.205645"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.208331"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.208331"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.210640"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.210640"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.213969"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.213969"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.216663"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.216663"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.219488"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.219488"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.222219"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.222219"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.225968"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.225968"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.228355"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.228355"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.230792"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.230792"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.233550"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.233550"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.236793"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.236793"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.239624"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.239624"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.242425"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.242425"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.244782"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.244782"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.247791"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.247791"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.250340"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.250340"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.253267"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.253267"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 18:42:44 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.6ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.341857"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.341857"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.344580"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.344580"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.347247"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.347247"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.349700"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.349700"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.352651"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.352651"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.355060"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.355060"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.357504"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.357504"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.360988"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.360988"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.364262"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.364262"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.366644"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.366644"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.368973"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.368973"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.371538"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.371538"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.374263"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.374263"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.377438"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.377438"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.380385"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.380385"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.383103"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.383103"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.385439"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.385439"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.387833"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.387833"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.390321"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.390321"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.393575"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.393575"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.396060"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.396060"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.398539"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.398539"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.400874"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.400874"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.403407"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.403407"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.405865"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.405865"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.408452"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.408452"]]  (0.8ms) commit transaction  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.411243"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.411243"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.414119"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.414119"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.416550"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.416550"]]  (8.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.426903"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.426903"]]  (9.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:44.438966"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:44.438966"]]  (8.8ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 18:42:44 -0400  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:54.583613"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:54.583613"]]  (1.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 18:42:54 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 0ms  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:42:54.592674"], ["dob", "1984-07-30 22:42:37.675372"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:42:54.592674"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 18:42:54 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 18:46:11 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (24.6ms) Rendered people/new.html.haml within layouts/application (28.8ms) Rendered application/_flash_messages.html.haml (9.2ms) Completed 200 OK in 59ms (Views: 56.0ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 18:46:11 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"22", "dob(5i)"=>"46", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (1.5ms) Rendered people/_form.html.haml (8.2ms) Rendered people/new.html.haml within layouts/application (8.4ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 16ms (Views: 10.0ms | ActiveRecord: 0.1ms)  (1.6ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 18:46:11 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.8ms) Rendered people/new.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 18:46:11 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"22", "dob(5i)"=>"46", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:11.952337"], ["dob", "2014-07-30 22:46:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-30 22:46:11.952337"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (2.6ms) Rendered application/_search_form.html.haml (1.7ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (18.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.4ms)  (2.0ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 18:46:11 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.0ms) Rendered people/new.html.haml within layouts/application (8.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 18:46:12 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"22", "dob(5i)"=>"46", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:12.013091"], ["dob", "2014-07-30 22:46:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-30 22:46:12.013091"]]  (1.2ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.5ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-30 18:46:12 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.4ms) Rendered people/new.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:12.040808"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:12.040808"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 18:46:12 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.0ms) Rendered people/edit.html.haml within layouts/application (8.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 18:46:12 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"22", "dob(5i)"=>"46", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-30 22:46:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-30 22:46:12.065544"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 18:46:12 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.2ms) Rendered people/edit.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.1ms)  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:12.092918"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:12.092918"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 18:46:12 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.3ms) Rendered people/edit.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.1ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 18:46:12 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.9ms) Rendered people/new.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms)  (1.4ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:12.130644"], ["dob", "2012-07-30 22:46:12.129362"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:12.130644"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 18:46:12 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.8ms) Rendered people/edit.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 18:46:12 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"18", "dob(5i)"=>"46", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.2ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 18:46:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-30 22:46:12.202605"]]  (1.5ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.9ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:12 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms)  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 18:46:14 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (17.2ms) Rendered people/new.html.haml within layouts/application (18.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 18:46:14 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 18:46:14 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 18:46:15 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"18", "dob(5i)"=>"46", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:15.846126"], ["dob", "2012-07-30 18:46:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:15.846126"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:52321/people Completed 302 Found in 5ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 7.3ms | ActiveRecord: 0.8ms)  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.751745"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.751745"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.754520"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.754520"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.757091"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.757091"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.759472"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.759472"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.761916"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.761916"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.764334"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.764334"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.766769"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.766769"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.769384"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.769384"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.773552"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.773552"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.778075"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.778075"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.781423"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.781423"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.784382"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.784382"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.787378"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.787378"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.791076"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.791076"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.793612"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.793612"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.796085"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.796085"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.798596"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.798596"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.801354"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.801354"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.804188"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.804188"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.807398"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.807398"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.810070"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.810070"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.812551"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.812551"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.815020"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.815020"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.817890"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.817890"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.820500"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.820500"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.822937"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.822937"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.825465"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.825465"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.827981"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.827981"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.831634"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.831634"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.834470"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.834470"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:16.837894"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:16.837894"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 18:46:16 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (5.6ms) Rendered people/index.html.haml within layouts/application (17.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 1.0ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 18:46:17 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.5ms) Rendered people/index.html.haml within layouts/application (11.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.8ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 18:46:17 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.7ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 18:46:18 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (9.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.6ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.188354"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.188354"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.191125"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.191125"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.193728"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.193728"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.196790"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.196790"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.199659"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.199659"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.202136"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.202136"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.204893"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.204893"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.208217"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.208217"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.211406"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.211406"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.214271"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.214271"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.216784"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.216784"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.219585"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.219585"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.223091"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.223091"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.226701"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.226701"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.229994"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.229994"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.232557"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.232557"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.234912"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.234912"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.237558"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.237558"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.241042"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.241042"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.244707"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.244707"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.248567"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.248567"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.251474"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.251474"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.254906"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.254906"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.258064"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.258064"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.261921"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.261921"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.265013"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.265013"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.268060"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.268060"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.271566"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.271566"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.274478"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.274478"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.277948"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.277948"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:19.281201"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:19.281201"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (43.1ms) Rendered people/index.html.haml within layouts/application (51.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 54ms (Views: 52.4ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-30 18:46:19 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (2.1ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (24.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 27ms (Views: 25.2ms | ActiveRecord: 0.9ms)  (1.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.236895"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.236895"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.239606"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.239606"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.242995"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.242995"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.245367"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.245367"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.247866"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.247866"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.250254"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.250254"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.252641"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.252641"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.255210"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.255210"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.257882"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.257882"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.260342"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.260342"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.262784"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.262784"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.265289"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.265289"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.267890"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.267890"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.270794"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.270794"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.273266"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.273266"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.275658"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.275658"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.278262"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.278262"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.280654"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.280654"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.283742"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.283742"]]  (0.9ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.287278"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.287278"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.290232"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.290232"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.292818"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.292818"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.295319"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.295319"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.297949"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.297949"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.300314"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.300314"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.303083"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.303083"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.306010"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.306010"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.308521"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.308521"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.310977"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.310977"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.313362"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.313362"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.315985"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.315985"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (12.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.7ms)  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.346096"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.346096"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.349851"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.349851"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.352415"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.352415"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.355430"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.355430"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.358059"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.358059"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.360478"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.360478"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.362879"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.362879"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.365398"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.365398"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.368003"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.368003"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.370624"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.370624"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.373847"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.373847"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.376860"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.376860"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.379713"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.379713"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.382300"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.382300"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.385357"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.385357"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.389266"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.389266"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.391856"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.391856"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.394426"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.394426"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.396951"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.396951"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.400325"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.400325"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.402834"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.402834"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.405307"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.405307"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.407845"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.407845"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.410685"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.410685"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.413077"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.413077"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.415543"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.415543"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.418966"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.418966"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.421717"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.421717"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.424271"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.424271"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.426744"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.426744"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:20.429385"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:20.429385"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (14.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.9ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-30 18:46:20 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (12.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 14.7ms | ActiveRecord: 0.6ms)  (2.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.134746"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.134746"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.137662"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.137662"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.140617"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.140617"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.142933"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.142933"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.145250"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.145250"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.148759"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.148759"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.151255"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.151255"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.153559"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.153559"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.155933"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.155933"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.158260"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.158260"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.160596"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.160596"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.162855"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.162855"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.165241"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.165241"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.168098"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.168098"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.171403"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.171403"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.174094"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.174094"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.176339"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.176339"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.178654"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.178654"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.180953"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.180953"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.183481"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.183481"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.185859"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.185859"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.188008"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.188008"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.191429"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.191429"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.194421"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.194421"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.196890"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.196890"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.199221"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.199221"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.201494"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.201494"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.203919"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.203919"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.206738"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.206738"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.209359"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.209359"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.212079"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.212079"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:21 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (10.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-30 18:46:21 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.4ms | ActiveRecord: 0.9ms)  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.987337"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.987337"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.989785"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.989785"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.992851"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.992851"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.995261"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.995261"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:21.997954"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:21.997954"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.000296"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.000296"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.003618"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.003618"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.006664"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.006664"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.009344"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.009344"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.012431"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.012431"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.014815"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.014815"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.017227"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.017227"]]  (4.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.024178"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.024178"]]  (10.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.036766"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.036766"]]  (6.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.045164"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.045164"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.049886"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.049886"]]  (7.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.059993"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.059993"]]  (8.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.070767"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.070767"]]  (19.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.092132"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.092132"]]  (10.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.104343"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.104343"]]  (16.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.123260"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.123260"]]  (5.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.130586"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.130586"]]  (5.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.138063"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.138063"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.142680"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.142680"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.145138"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.145138"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.148088"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.148088"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.153551"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.153551"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.158838"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.158838"]]  (9.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.170299"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.170299"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.173074"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.173074"]]  (6.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.181703"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.181703"]]  (21.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:22 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (8.0ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (23.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 26ms (Views: 24.3ms | ActiveRecord: 0.8ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 18:46:22 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-30 18:46:22 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (17.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.5ms)  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.7ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.313896"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_190@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.313896"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:22 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.4ms)  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:22 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:22.681599"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_191@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:22.681599"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:22 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-30 18:46:23 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.4ms) commit transaction Redirected to http://127.0.0.1:52321/people Completed 302 Found in 4ms (ActiveRecord: 1.9ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:23 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (4.5ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.2ms)  (0.3ms) SELECT COUNT(*) FROM "people"  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:24.486155"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_192@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:24.486155"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:24 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 18:46:24 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.8ms) Rendered people/edit.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.1ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:24 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (5.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 6.9ms | ActiveRecord: 0.3ms)  (1.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:24 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:24 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.2ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-30 18:46:24 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.3ms)  (1.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:24.962435"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_193@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:24.962435"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:24.965380"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_194@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:24.965380"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:24.969082"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_195@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:24.969082"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:24.972140"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoe_196@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:24.972140"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:24.975073"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:24.975073"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:24 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-30 18:46:24 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.4ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.010585"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.010585"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.014160"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.014160"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.016954"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.016954"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.019972"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.019972"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.022584"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.022584"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.025106"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.025106"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.027486"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.027486"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.030079"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.030079"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.032647"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.032647"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.035978"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.035978"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.038738"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.038738"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.041402"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.041402"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.044058"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.044058"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.047324"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.047324"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.050071"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.050071"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.053539"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.053539"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.056957"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.056957"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.059630"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.059630"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.062043"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.062043"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.064806"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.064806"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.067349"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.067349"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.070566"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.070566"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.073407"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.073407"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.076464"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.076464"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.079468"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.079468"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.082299"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_66@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.082299"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.084857"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.084857"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.088126"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.088126"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.090803"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.090803"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.093594"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.093594"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.097316"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.097316"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.100747"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.100747"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.104865"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.104865"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.107619"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.107619"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.110194"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.110194"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.112965"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.112965"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.115791"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.115791"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.118629"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.118629"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.121398"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.121398"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.124154"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.124154"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.127789"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.127789"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.130914"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.130914"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.133807"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.133807"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.136385"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.136385"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.139095"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.139095"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.141817"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.141817"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.144550"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.144550"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.148291"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.148291"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.151004"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.151004"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-30 22:46:25.153631"], ["dob", "1984-07-30 22:46:09.210512"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 22:46:25.153631"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 18:46:25 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (12.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.7ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-30 18:46:25 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (12.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 12.8ms | ActiveRecord: 1.1ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.2ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.2ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------- ControllerScaffoldingTest: test_truth -------------------------------------  (0.0ms) rollback transaction  (0.0ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------- ControllerScaffoldingTest: test_truth -------------------------------------  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:22:31 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (25.8ms) Rendered people/new.html.haml within layouts/application (30.9ms) Rendered application/_flash_messages.html.haml (9.7ms) Completed 200 OK in 72ms (Views: 68.3ms | ActiveRecord: 0.4ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 21:22:31 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"01", "dob(5i)"=>"22", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (1.5ms) Rendered people/_form.html.haml (8.6ms) Rendered people/new.html.haml within layouts/application (8.9ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 16ms (Views: 10.6ms | ActiveRecord: 0.1ms)  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:22:31 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.8ms) Rendered people/new.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 21:22:31 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"01", "dob(5i)"=>"22", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:31.725780"], ["dob", "2014-07-31 01:22:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 01:22:31.725780"]]  (1.2ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 7ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:31 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (64.2ms) Rendered people/index.html.haml within layouts/application (87.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 91ms (Views: 89.8ms | ActiveRecord: 0.4ms)  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:22:31 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.8ms) Rendered people/new.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 21:22:31 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"01", "dob(5i)"=>"22", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:31.852298"], ["dob", "2014-07-31 01:22:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 01:22:31.852298"]]  (1.2ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 5ms (ActiveRecord: 1.6ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:22:31 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.6ms) Rendered people/new.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:31.877242"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:31.877242"]]  (1.1ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 21:22:31 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.3ms) Rendered people/edit.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.3ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 21:22:31 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"01", "dob(5i)"=>"22", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 01:22:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 01:22:31.904382"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 6ms (ActiveRecord: 1.8ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 21:22:31 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.5ms) Rendered people/edit.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.3ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:31.931318"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:31.931318"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 21:22:31 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.0ms) Rendered people/edit.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.1ms)  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:22:31 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.6ms) Rendered people/new.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:31.968367"], ["dob", "2012-07-31 01:22:31.967398"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:31.968367"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 21:22:31 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.2ms) Rendered people/edit.html.haml within layouts/application (8.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 21:22:32 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"21", "dob(5i)"=>"22", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.2ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 21:22:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 01:22:32.006330"]]  (1.4ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.9ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:32 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.4ms)  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:22:35 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (11.6ms) Rendered people/new.html.haml within layouts/application (12.2ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 21:22:35 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 21:22:35 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 21:22:36 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"21", "dob(5i)"=>"22", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.3ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:36.349065"], ["dob", "2012-07-30 21:22:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:36.349065"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:55136/people Completed 302 Found in 6ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.3ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (3.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.361932"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.361932"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.364435"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.364435"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.366725"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.366725"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.369267"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.369267"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.372605"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.372605"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.374953"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.374953"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.377500"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.377500"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.379842"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.379842"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.382627"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.382627"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.385411"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.385411"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.388025"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.388025"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.390663"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.390663"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.393425"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.393425"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.396556"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.396556"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.399994"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.399994"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.402519"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.402519"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.405231"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.405231"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.407839"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.407839"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.410882"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.410882"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.413489"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.413489"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.416158"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.416158"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.418769"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.418769"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.421112"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.421112"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.424442"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.424442"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.427796"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.427796"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.430417"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.430417"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.433173"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.433173"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.437078"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.437078"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.439659"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.439659"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.442180"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.442180"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:37.446307"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:37.446307"]]  (1.5ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 21:22:37 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.2ms) Rendered people/index.html.haml within layouts/application (14.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.8ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 21:22:37 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.6ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 21:22:38 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (9.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.2ms | ActiveRecord: 0.5ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 21:22:39 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (12.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.8ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.905189"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.905189"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.908308"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.908308"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.911554"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.911554"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.914845"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.914845"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.917205"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.917205"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.919483"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.919483"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.922031"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.922031"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.924671"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.924671"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.927783"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.927783"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.930968"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.930968"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.934030"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.934030"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.937256"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.937256"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.939788"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.939788"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.942873"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.942873"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.946047"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.946047"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.949753"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.949753"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.953618"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.953618"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.956412"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.956412"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.959683"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.959683"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.963567"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.963567"]]  (0.9ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.967125"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.967125"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.970142"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.970142"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.972638"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.972638"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.976032"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.976032"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.979700"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.979700"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.982646"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.982646"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.985239"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.985239"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.988005"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.988005"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.991112"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.991112"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.994742"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.994742"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:39.998044"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:39.998044"]]  (2.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:40 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (13.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 14.6ms | ActiveRecord: 0.9ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-30 21:22:40 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.1ms) Rendered people/index.html.haml within layouts/application (15.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 19ms (Views: 17.3ms | ActiveRecord: 0.6ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.863053"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.863053"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.865889"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.865889"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.868827"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.868827"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.871478"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.871478"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.873817"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.873817"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.876555"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.876555"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.879301"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.879301"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.881898"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.881898"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.885396"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.885396"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.887943"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.887943"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.890364"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.890364"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.892776"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.892776"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.895243"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.895243"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.898319"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.898319"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.900827"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.900827"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.903503"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.903503"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.905877"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.905877"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.908485"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.908485"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.911945"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.911945"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.915127"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.915127"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.917672"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.917672"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.921076"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.921076"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.924049"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.924049"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.927663"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.927663"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.930263"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.930263"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.932677"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.932677"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.935794"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.935794"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.938380"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.938380"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.940859"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.940859"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.944369"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.944369"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.947305"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.947305"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:40 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (11.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.6ms)  (1.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.976354"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.976354"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.979174"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.979174"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.982079"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.982079"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.985286"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.985286"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.987984"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.987984"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.990730"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.990730"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.993286"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.993286"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.996574"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.996574"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:40.999311"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:40.999311"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.001845"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.001845"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.005763"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.005763"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.008924"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.008924"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.012607"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.012607"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.016111"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.016111"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.019660"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.019660"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.022617"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.022617"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.025054"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.025054"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.027786"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.027786"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.030932"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.030932"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.033523"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.033523"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.036494"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.036494"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.039207"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.039207"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.041869"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.041869"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.044763"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.044763"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.047418"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.047418"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.050691"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.050691"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.053587"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.053587"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.057160"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.057160"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.059959"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.059959"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.062908"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.062908"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.066285"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.066285"]]  (1.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (14.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-30 21:22:41 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.1ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (16.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.7ms)  (2.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.887038"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.887038"]]  (0.9ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.890715"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.890715"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.894924"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.894924"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.898130"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.898130"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.900708"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.900708"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.903168"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.903168"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.905493"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.905493"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.908353"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.908353"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.911082"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.911082"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.913902"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.913902"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.916386"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.916386"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.918971"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.918971"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.921357"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.921357"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.924466"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.924466"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.933724"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.933724"]]  (1.0ms) commit transaction  (0.2ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.937845"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.937845"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.940816"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.940816"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.945222"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.945222"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.948049"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.948049"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.950722"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.950722"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.953497"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.953497"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.956170"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.956170"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.958580"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.958580"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.961199"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.961199"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.963866"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.963866"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.966823"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.966823"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.969850"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.969850"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.972503"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.972503"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.975113"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.975113"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.977659"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.977659"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:41.980801"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:41.980801"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (13.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-30 21:22:42 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (10.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.6ms)  (3.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.461082"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.461082"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.463899"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.463899"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.466856"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.466856"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.469954"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.469954"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.473253"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.473253"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.476199"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.476199"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.478804"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.478804"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.481273"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.481273"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.483750"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.483750"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.486425"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.486425"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.488899"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.488899"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.491504"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.491504"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.494436"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.494436"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.497266"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.497266"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.499742"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.499742"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.502173"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.502173"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.505159"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.505159"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.507507"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.507507"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.510051"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.510051"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.512466"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.512466"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.514853"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.514853"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.517625"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.517625"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.520394"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.520394"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.523796"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.523796"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.526400"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.526400"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.529616"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.529616"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.532493"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.532493"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.535162"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.535162"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.537727"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.537727"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.540394"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.540394"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.543366"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.543366"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (11.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 12.9ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 21:22:42 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-30 21:22:42 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (14.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.5ms)  (1.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:42.634666"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_190@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:42.634666"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 12ms (Views: 9.9ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:43.024868"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_191@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:43.024868"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.4ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-30 21:22:43 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.3ms) commit transaction Redirected to http://127.0.0.1:55136/people Completed 302 Found in 5ms (ActiveRecord: 2.0ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.3ms)  (0.3ms) SELECT COUNT(*) FROM "people"  (1.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:44.831591"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_192@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:44.831591"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 21:22:44 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (9.1ms) Rendered people/edit.html.haml within layouts/application (9.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-30 21:22:45 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (5.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.3ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.318003"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_193@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.318003"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.320746"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_194@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.320746"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.323715"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_195@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.323715"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.326460"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoe_196@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.326460"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.328985"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.328985"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.5ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-30 21:22:45 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (5.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.4ms)  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.370780"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.370780"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.373361"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.373361"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.376488"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.376488"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.379161"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.379161"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.381734"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.381734"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.385142"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.385142"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.387961"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.387961"]]  (0.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.390469"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.390469"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.393162"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.393162"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.396733"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_66@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.396733"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.399440"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.399440"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.402536"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.402536"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.405340"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.405340"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.408743"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.408743"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.411910"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.411910"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.414808"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.414808"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.417381"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_31@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.417381"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.420134"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.420134"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.422615"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.422615"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.425409"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.425409"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.428205"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.428205"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.431589"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.431589"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.434911"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_66@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.434911"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.438602"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.438602"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.442795"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.442795"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.446813"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.446813"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.450339"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.450339"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.453226"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.453226"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.455987"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.455987"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.458951"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.458951"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.462581"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.462581"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.465839"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.465839"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.469319"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.469319"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.473073"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.473073"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.476447"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.476447"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.480629"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.480629"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.483560"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.483560"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.486994"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.486994"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.489961"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.489961"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.493808"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.493808"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.497069"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.497069"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.500028"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.500028"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.503032"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.503032"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.506117"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.506117"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.509058"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.509058"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.512593"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.512593"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.515717"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.515717"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.519892"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.519892"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.523006"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.523006"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:22:45.527157"], ["dob", "1984-07-31 01:22:28.673454"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:22:45.527157"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:22:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (14.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 1.1ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-30 21:22:45 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.7ms) Rendered people/index.html.haml within layouts/application (16.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 20ms (Views: 17.6ms | ActiveRecord: 1.0ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:43:35 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (32.3ms) Rendered people/new.html.haml within layouts/application (40.3ms) Rendered application/_flash_messages.html.haml (8.7ms) Completed 200 OK in 80ms (Views: 75.0ms | ActiveRecord: 0.5ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 21:43:35 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"01", "dob(5i)"=>"43", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (1.6ms) Rendered people/_form.html.haml (8.5ms) Rendered people/new.html.haml within layouts/application (8.7ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 16ms (Views: 10.3ms | ActiveRecord: 0.1ms)  (1.6ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:43:35 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.1ms) Rendered people/new.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 21:43:35 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"01", "dob(5i)"=>"43", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:35.275269"], ["dob", "2014-07-31 01:43:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 01:43:35.275269"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 6ms (ActiveRecord: 1.4ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:43:35 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.3ms) Rendered people/new.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)  (1.6ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:35.365179"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:35.365179"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 21:43:35 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (5.9ms) Rendered people/edit.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.4ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 21:43:35 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"01", "dob(5i)"=>"43", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 01:43:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 01:43:35.392987"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.2ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 21:43:35 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (5.8ms) Rendered people/edit.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.1ms)  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:43:35 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.4ms) Rendered people/new.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 21:43:35 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"01", "dob(5i)"=>"43", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:35.434647"], ["dob", "2014-07-31 01:43:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 01:43:35.434647"]]  (1.7ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 2.1ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.7ms) Rendered application/_search_form.html.haml (1.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.4ms) Rendered people/index.html.haml within layouts/application (17.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.4ms)  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:35.470413"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:35.470413"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 21:43:35 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.6ms) Rendered people/edit.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.1ms)  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:43:35 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.6ms) Rendered people/new.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:35.511625"], ["dob", "2012-07-31 01:43:35.510636"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:35.511625"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 21:43:35 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.7ms) Rendered people/edit.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 21:43:35 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"21", "dob(5i)"=>"43", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 21:43:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 01:43:35.573070"]]  (1.4ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 2.0ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (7.8ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 12ms (Views: 10.3ms | ActiveRecord: 0.6ms)  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:43:38 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (12.9ms) Rendered people/new.html.haml within layouts/application (13.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 21:43:38 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 21:43:38 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 21:43:39 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"21", "dob(5i)"=>"43", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.4ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:39.719921"], ["dob", "2012-07-30 21:43:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:39.719921"]]  (1.1ms) commit transaction Redirected to http://127.0.0.1:56421/people Completed 302 Found in 6ms (ActiveRecord: 1.8ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.5ms)  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:40 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:40.738844"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:40.738844"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:40 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-30 21:43:41 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.4ms) commit transaction Redirected to http://127.0.0.1:56421/people Completed 302 Found in 5ms (ActiveRecord: 2.2ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.2ms)  (0.2ms) SELECT COUNT(*) FROM "people"  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:42.501584"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:42.501584"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 21:43:42 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.1ms) Rendered people/edit.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-30 21:43:42 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:42.945520"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_6@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:42.945520"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:42.948608"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_7@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:42.948608"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:42.951351"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_8@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:42.951351"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:42.954210"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_9@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:42.954210"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:42.957225"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:42.957225"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-30 21:43:42 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.3ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:42.991838"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:42.991838"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:42.994834"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:42.994834"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:42.998114"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:42.998114"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.000987"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.000987"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.003518"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.003518"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.006199"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.006199"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.008809"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.008809"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.011565"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.011565"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.014114"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.014114"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.016993"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.016993"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.019799"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.019799"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.022891"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.022891"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.025663"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.025663"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.029011"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.029011"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.032317"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.032317"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.036131"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.036131"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.039807"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.039807"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.043128"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.043128"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.045792"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.045792"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.048660"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.048660"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.051289"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.051289"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.054586"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.054586"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.057301"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.057301"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.060011"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.060011"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.063482"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.063482"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.066533"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.066533"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.068937"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.068937"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.071474"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.071474"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.074070"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.074070"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.077084"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.077084"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.080927"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.080927"]]  (1.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.084690"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.084690"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.087767"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.087767"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.090596"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.090596"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.094420"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.094420"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.097915"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.097915"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.100914"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.100914"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.103670"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.103670"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.106573"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.106573"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.109850"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.109850"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.112831"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.112831"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.116190"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.116190"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.119287"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.119287"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.122377"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.122377"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.125164"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.125164"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.129083"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.129083"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.131978"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.131978"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.134897"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.134897"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.137759"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.137759"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:43.140668"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:43.140668"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (22.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 27ms (Views: 24.4ms | ActiveRecord: 0.9ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-30 21:43:43 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (13.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 1.0ms)  (1.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.378172"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.378172"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.380878"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.380878"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.384116"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.384116"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.387451"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.387451"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.390548"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.390548"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.392980"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.392980"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.395471"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.395471"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.397831"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.397831"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.400223"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.400223"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.402999"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.402999"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.406118"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.406118"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.409101"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.409101"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.411735"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.411735"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.414495"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.414495"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.417092"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.417092"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.419626"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.419626"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.422088"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.422088"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.424546"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.424546"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.427719"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.427719"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.430760"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.430760"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.433697"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.433697"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.436377"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.436377"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.439809"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.439809"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.442834"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.442834"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.445382"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.445382"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.448350"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.448350"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.451134"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.451134"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.454016"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.454016"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.456549"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.456549"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.459876"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.459876"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:44.463625"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:44.463625"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 21:43:44 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 12.5ms | ActiveRecord: 0.8ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 21:43:45 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.5ms) Rendered people/index.html.haml within layouts/application (15.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.7ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 21:43:45 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.5ms) Rendered people/index.html.haml within layouts/application (11.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.6ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 21:43:46 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (13.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 15.2ms | ActiveRecord: 0.8ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.203269"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.203269"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.206292"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.206292"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.209492"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.209492"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.212433"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.212433"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.214887"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.214887"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.217226"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.217226"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.219597"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.219597"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.222218"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.222218"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.225677"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.225677"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.228568"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.228568"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.230886"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.230886"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.233460"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.233460"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.235888"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.235888"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.238406"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.238406"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.241080"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.241080"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.244179"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.244179"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.247504"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.247504"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.250754"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.250754"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.253782"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.253782"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.256285"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.256285"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.258973"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.258973"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.262333"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.262333"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.264961"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.264961"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.267557"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.267557"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.270632"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.270632"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.273794"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.273794"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.276849"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.276849"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.280203"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.280203"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.283315"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.283315"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.285788"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.285788"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:47.288609"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:47.288609"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:47 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (17.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 29ms (Views: 27.0ms | ActiveRecord: 0.8ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-30 21:43:47 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (16.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 18.2ms | ActiveRecord: 0.9ms)  (1.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.187099"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.187099"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.190624"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.190624"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.194051"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.194051"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.196587"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.196587"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.199422"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.199422"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.201924"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.201924"]]  (1.5ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.205533"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.205533"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.208133"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.208133"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.210430"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.210430"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.212884"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.212884"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.216029"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.216029"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.218526"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.218526"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.221009"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.221009"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.223371"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.223371"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.225963"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.225963"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.228770"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.228770"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.231276"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.231276"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.233977"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.233977"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.236398"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.236398"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.238774"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.238774"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.241080"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.241080"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.243357"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.243357"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.245755"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.245755"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.248904"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.248904"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.251600"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.251600"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.253878"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.253878"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.256158"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.256158"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.258436"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.258436"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.260831"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.260831"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.263265"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.263265"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:48.266002"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:48.266002"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:48 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (12.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.9ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-30 21:43:48 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.1ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (19.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 23ms (Views: 20.2ms | ActiveRecord: 1.1ms)  (2.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.071808"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.071808"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.074934"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.074934"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.077641"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.077641"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.080734"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.080734"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.083648"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.083648"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.086239"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.086239"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.088979"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.088979"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.092774"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.092774"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.095347"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.095347"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.097811"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.097811"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.100615"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.100615"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.103215"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.103215"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.106605"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.106605"]]  (0.9ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.109855"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.109855"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.112619"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.112619"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.115712"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.115712"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.118627"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.118627"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.121158"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.121158"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.124506"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.124506"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.127034"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.127034"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.129701"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.129701"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.132145"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.132145"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.134708"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.134708"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.137109"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.137109"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.139530"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.139530"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.142054"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.142054"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.145056"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.145056"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.149056"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.149056"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.152410"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.152410"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.155293"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.155293"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.157945"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.157945"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:49 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (13.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.9ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-30 21:43:49 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.5ms) Rendered people/index.html.haml within layouts/application (12.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.7ms)  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.655398"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.655398"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.658411"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.658411"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.660866"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.660866"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.663505"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.663505"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.666260"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.666260"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.668640"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.668640"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.671261"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.671261"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.673582"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.673582"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.675866"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.675866"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.678117"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.678117"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.680457"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.680457"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.683138"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.683138"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.685682"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.685682"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.688188"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.688188"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.690659"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.690659"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.693525"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.693525"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.696116"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.696116"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.699180"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.699180"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.701708"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.701708"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.703952"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.703952"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.706320"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.706320"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.708819"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.708819"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.711380"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.711380"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.713753"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.713753"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.716280"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.716280"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.719058"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.719058"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.721259"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.721259"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.723682"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.723682"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.726181"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.726181"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.729146"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.729146"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.731734"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.731734"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:49 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (10.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.6ms)  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:49.758462"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:49.758462"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:49 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.4ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:50 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.187808"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.187808"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.190931"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.190931"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.193622"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.193622"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.196090"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.196090"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.199051"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.199051"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.201598"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.201598"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.204225"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.204225"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.207692"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.207692"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.210528"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.210528"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.213198"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.213198"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.215629"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.215629"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.218073"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.218073"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.220751"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.220751"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.223368"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.223368"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.225880"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.225880"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.228906"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.228906"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.231942"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.231942"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.234533"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.234533"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.236863"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.236863"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.239514"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.239514"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.242128"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.242128"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.245187"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.245187"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.248421"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.248421"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.251204"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.251204"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.253720"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.253720"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.257011"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.257011"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.259562"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.259562"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.262167"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.262167"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.264714"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.264714"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.267366"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.267366"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:43:50.269954"], ["dob", "1984-07-31 01:43:32.217294"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:43:50.269954"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:43:50 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (11.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 21:43:50 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (10.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.0ms | ActiveRecord: 0.5ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-30 21:43:50 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (17.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.5ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (2.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:45:04 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (28.5ms) Rendered people/new.html.haml within layouts/application (34.6ms) Rendered application/_flash_messages.html.haml (12.1ms) Completed 200 OK in 74ms (Views: 70.7ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 21:45:04 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"01", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (2.4ms) Rendered people/_form.html.haml (7.0ms) Rendered people/new.html.haml within layouts/application (7.3ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 16ms (Views: 8.9ms | ActiveRecord: 0.1ms)  (2.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:45:04 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.1ms) Rendered people/new.html.haml within layouts/application (8.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 21:45:04 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"01", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:04.890596"], ["dob", "2014-07-31 01:45:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 01:45:04.890596"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 10ms (ActiveRecord: 1.5ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:45:04 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.9ms) Rendered people/new.html.haml within layouts/application (8.2ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:04.993341"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:04.993341"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 21:45:04 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.0ms) Rendered people/edit.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.3ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 21:45:05 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"01", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 01:45:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 01:45:05.018408"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.5ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 21:45:05 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.9ms) Rendered people/edit.html.haml within layouts/application (9.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.2ms)  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:45:05 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.4ms) Rendered people/new.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 21:45:05 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"01", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:05.063644"], ["dob", "2014-07-31 01:45:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 01:45:05.063644"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:05 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.9ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (16.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.4ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:05.097690"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:05.097690"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 21:45:05 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.9ms) Rendered people/edit.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.1ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:45:05 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.8ms) Rendered people/new.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:05.138508"], ["dob", "2012-07-31 01:45:05.137555"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:05.138508"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 21:45:05 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (9.4ms) Rendered people/edit.html.haml within layouts/application (9.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 21:45:05 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"21", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 21:45:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 01:45:05.193200"]]  (1.4ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 2.0ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:05 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 12ms (Views: 9.9ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 21:45:07 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (18.4ms) Rendered people/new.html.haml within layouts/application (18.9ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 23ms (Views: 22.6ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 21:45:07 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 21:45:07 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 21:45:08 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"21", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.4ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:08.742325"], ["dob", "2012-07-30 21:45:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:08.742325"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:56965/people Completed 302 Found in 6ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 10ms (Views: 7.8ms | ActiveRecord: 0.8ms)  (1.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:09 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:09.760856"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:09.760856"]]  (1.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:09 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.6ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-30 21:45:10 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.3ms) commit transaction Redirected to http://127.0.0.1:56965/people Completed 302 Found in 4ms (ActiveRecord: 1.8ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:10 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.3ms)  (0.2ms) SELECT COUNT(*) FROM "people"  (1.1ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:11.543018"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:11.543018"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 21:45:11 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.3ms) Rendered people/edit.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.1ms)  (1.4ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-30 21:45:11 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:11.992240"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_6@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:11.992240"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:11.994792"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_7@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:11.994792"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:11.997579"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_8@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:11.997579"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.000478"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_9@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.000478"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.003173"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.003173"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:12 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-30 21:45:12 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (5.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.038056"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.038056"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.041024"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.041024"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.043524"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.043524"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.046163"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.046163"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.049604"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.049604"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.052263"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.052263"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.054839"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.054839"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.057550"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.057550"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.060088"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.060088"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.062699"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.062699"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.065269"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.065269"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.067864"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.067864"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.070991"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.070991"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.073666"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.073666"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.076750"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.076750"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.080094"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.080094"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.083453"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.083453"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.086134"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.086134"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.088883"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.088883"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.091824"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.091824"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.094658"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.094658"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.097243"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.097243"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.100244"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.100244"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.102786"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.102786"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.105257"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.105257"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.107716"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_20@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.107716"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.111407"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.111407"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.114587"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.114587"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.117457"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.117457"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.120401"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.120401"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.123843"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.123843"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.126609"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.126609"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.129415"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.129415"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.132256"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.132256"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.135169"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.135169"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.138280"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.138280"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.141085"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.141085"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.143839"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.143839"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.146470"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.146470"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.150051"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.150051"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.152986"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.152986"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.155919"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.155919"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.158893"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.158893"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.163235"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.163235"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.166753"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.166753"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.170102"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.170102"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.173948"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.173948"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.176782"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.176782"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.179339"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.179339"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:12.182344"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:12.182344"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:12 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (7.2ms) Rendered people/index.html.haml within layouts/application (26.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 29ms (Views: 27.4ms | ActiveRecord: 0.9ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-30 21:45:12 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.5ms) Rendered people/index.html.haml within layouts/application (13.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 1.2ms)  (1.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.392814"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.392814"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.395757"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.395757"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.398557"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.398557"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.400853"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.400853"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.403274"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.403274"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.405704"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.405704"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.408151"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.408151"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.412304"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.412304"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.415644"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.415644"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.418279"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.418279"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.420697"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.420697"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.423194"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.423194"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.425938"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.425938"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.428597"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.428597"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.431966"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.431966"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.434525"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.434525"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.437010"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.437010"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.439272"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.439272"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.441559"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.441559"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.444029"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.444029"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.446670"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.446670"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.449383"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.449383"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.451750"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.451750"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.454152"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.454152"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.456571"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.456571"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.459566"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.459566"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.462211"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.462211"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.465027"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.465027"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.467602"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.467602"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.471059"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.471059"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:13.473981"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:13.473981"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 21:45:13 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (5.3ms) Rendered people/index.html.haml within layouts/application (13.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 21:45:13 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.6ms) Rendered people/index.html.haml within layouts/application (12.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.6ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 21:45:14 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.4ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.7ms) Rendered people/index.html.haml within layouts/application (14.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 15.7ms | ActiveRecord: 0.9ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 21:45:15 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.2ms) Rendered people/index.html.haml within layouts/application (11.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.6ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.8ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.181458"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.181458"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.184020"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.184020"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.187088"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.187088"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.190065"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.190065"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.193014"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.193014"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.196185"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.196185"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.199566"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.199566"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.201951"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.201951"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.204999"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.204999"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.207887"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.207887"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.211455"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.211455"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.214090"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.214090"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.216679"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.216679"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.219343"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.219343"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.222257"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.222257"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.224712"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.224712"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.227312"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.227312"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.230672"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.230672"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.233760"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.233760"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.236533"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.236533"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.239781"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.239781"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.243520"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.243520"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.246043"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.246043"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.249159"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.249159"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.251846"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.251846"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.255707"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.255707"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.258430"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.258430"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.261526"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.261526"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.265351"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.265351"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.268182"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.268182"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:16.271429"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:16.271429"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (2.8ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.5ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (16.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 1.0ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-30 21:45:16 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (15.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 16.5ms | ActiveRecord: 0.8ms)  (1.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.171329"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.171329"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.174189"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.174189"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.178040"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.178040"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.180688"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.180688"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.183290"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.183290"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.185770"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.185770"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.188463"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.188463"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.191178"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.191178"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.193809"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.193809"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.196400"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.196400"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.199431"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.199431"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.201935"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.201935"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.204816"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.204816"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.207435"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.207435"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.210361"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.210361"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.213622"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.213622"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.216335"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.216335"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.218848"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.218848"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.221453"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.221453"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.223840"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.223840"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.226201"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.226201"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.228586"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.228586"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.231039"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.231039"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.233574"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.233574"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.236640"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.236640"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.239146"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.239146"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.241582"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.241582"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.244010"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.244010"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.246897"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.246897"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.249960"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.249960"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.252667"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.252667"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (14.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-30 21:45:17 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.1ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.6ms)  (1.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.733156"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.733156"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.735766"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.735766"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.738018"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.738018"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.740764"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.740764"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.744152"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.744152"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.746641"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.746641"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.749541"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.749541"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.751869"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.751869"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.754322"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.754322"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.756933"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.756933"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.759641"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.759641"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (1.1ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.762536"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.762536"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.766671"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.766671"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.770173"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.770173"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.773621"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.773621"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.776685"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.776685"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.779710"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.779710"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.782726"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.782726"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.785194"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.785194"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.787813"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.787813"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.790345"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.790345"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.792783"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.792783"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.795202"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.795202"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.797921"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.797921"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.800447"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.800447"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.803015"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.803015"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.805508"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.805508"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.807921"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.807921"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.810303"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.810303"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.812695"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.812695"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:17.815288"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:17.815288"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (14.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.9ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-30 21:45:18 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (19.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.8ms)  (1.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.615787"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.615787"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.618463"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.618463"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.620859"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.620859"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.623215"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.623215"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.625406"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.625406"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.627684"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.627684"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.630577"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.630577"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.632987"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.632987"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.635217"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.635217"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.638575"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.638575"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.641386"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.641386"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.643716"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.643716"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.646139"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.646139"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.648647"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.648647"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.650787"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.650787"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.653149"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.653149"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.655834"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.655834"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.658422"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.658422"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.661366"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.661366"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.664567"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.664567"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.668020"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.668020"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.670453"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.670453"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.672910"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.672910"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.675245"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.675245"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.677508"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.677508"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.679970"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.679970"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.682578"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.682578"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.685115"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.685115"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.687531"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.687531"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.689861"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.689861"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.692311"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.692311"]]  (1.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (12.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.6ms)  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:18.721798"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:18.721798"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (6.2ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (11.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.5ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.2ms)  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.159564"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.159564"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.162790"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.162790"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.165897"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.165897"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.168283"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.168283"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.170786"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.170786"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.174084"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.174084"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.177462"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.177462"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.180377"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.180377"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.183070"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.183070"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.185526"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.185526"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.188029"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.188029"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.190428"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.190428"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.192852"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.192852"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.195343"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.195343"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.198416"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.198416"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.201008"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.201008"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.203592"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.203592"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.206514"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.206514"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.209013"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.209013"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.211443"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.211443"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.214234"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.214234"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.216824"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.216824"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.219517"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.219517"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.222030"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.222030"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.224535"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.224535"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.226925"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.226925"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.229762"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.229762"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.232660"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.232660"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.235185"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.235185"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.237588"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.237588"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 01:45:19.240198"], ["dob", "1984-07-31 01:45:01.800499"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 01:45:19.240198"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 21:45:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (12.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 0.7ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 21:45:19 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (10.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-30 21:45:19 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (13.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.5ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (2.0ms) CREATE TABLE "credit_card_infos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "cardholder" varchar(255), "exp_date" date, "secret_code" varchar(255), "created_at" datetime, "updated_at" datetime)  (4.4ms) DROP TABLE "people"  (1.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "email" varchar(255), "title" varchar(255), "dob" datetime, "is_manager" boolean, "created_at" datetime, "updated_at" datetime)  (0.1ms) SELECT version FROM "schema_migrations"  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140731014857') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams"], ["created_at", "2014-07-31 02:32:41.034268"], ["exp_date", "2016-07-30"], ["secret_code", "14279e56f990631c"], ["updated_at", "2014-07-31 02:32:41.034268"]]  (1.5ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams"], ["created_at", "2014-07-31 02:33:34.044019"], ["exp_date", "2016-07-30"], ["secret_code", "23c7967b753dbcff"], ["updated_at", "2014-07-31 02:33:34.044019"]]  (1.0ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:33:34 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (13.0ms) Rendered credit_card_infos/index.html.haml within layouts/application (21.6ms) Rendered application/_flash_messages.html.haml (10.3ms) Completed 200 OK in 58ms (Views: 57.1ms | ActiveRecord: 0.4ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams"], ["created_at", "2014-07-31 02:34:50.593342"], ["exp_date", "2016-07-30"], ["secret_code", "9da5bf7d5766f326"], ["updated_at", "2014-07-31 02:34:50.593342"]]  (1.6ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:34:53 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.5ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (16.6ms) Rendered credit_card_infos/index.html.haml within layouts/application (30.6ms) Rendered application/_flash_messages.html.haml (9.9ms) Completed 200 OK in 67ms (Views: 65.4ms | ActiveRecord: 0.8ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 22:34:53 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:34:53 -0400 Started GET "/credit_card_infos?per_page=30&page=1" for 127.0.0.1 at 2014-07-30 22:35:18 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"30", "page"=>"1"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 30 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered credit_card_infos/index.html.haml within layouts/application (3.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:35:18 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 02:41:25.310839"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:25.310839"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:41:27 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.6ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (14.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (31.3ms) Rendered application/_flash_messages.html.haml (9.0ms) Completed 200 OK in 69ms (Views: 67.4ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 22:41:27 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:41:27 -0400  (1.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.8ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 02:41:28.390510"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.390510"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 02:41:28.394429"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.394429"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 02:41:28.396986"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.396986"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 02:41:28.399984"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.399984"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 02:41:28.402679"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.402679"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 02:41:28.405635"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.405635"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 02:41:28.408291"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.408291"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 02:41:28.411267"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.411267"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 02:41:28.413847"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.413847"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 02:41:28.416100"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.416100"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 02:41:28.418498"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.418498"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 02:41:28.421265"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.421265"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 02:41:28.424426"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.424426"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 02:41:28.427436"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.427436"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 02:41:28.429919"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.429919"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 02:41:28.432338"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.432338"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 02:41:28.434947"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.434947"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 02:41:28.437573"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.437573"]]  (5.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 02:41:28.444969"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.444969"]]  (10.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 02:41:28.457165"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.457165"]]  (18.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 02:41:28.477132"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.477132"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 02:41:28.481539"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.481539"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 02:41:28.484489"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.484489"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 02:41:28.487299"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.487299"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 02:41:28.490201"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.490201"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 02:41:28.494259"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.494259"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 02:41:28.498021"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.498021"]]  (5.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 02:41:28.506246"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.506246"]]  (18.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 02:41:28.527618"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.527618"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 02:41:28.530876"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.530876"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 02:41:28.534666"], ["exp_date", "2016-07-30"], ["secret_code", "bde2f461eb88949d"], ["updated_at", "2014-07-31 02:41:28.534666"]]  (2.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:41:28 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered credit_card_infos/index.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.5ms) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 02:42:37.874150"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:37.874150"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:42:40 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.4ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (10.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (22.9ms) Rendered application/_flash_messages.html.haml (11.7ms) Completed 200 OK in 58ms (Views: 56.0ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 22:42:40 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:42:40 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 02:42:40.898955"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.898955"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 02:42:40.902324"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.902324"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 02:42:40.904963"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.904963"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 02:42:40.907577"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.907577"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 02:42:40.910077"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.910077"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 02:42:40.912711"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.912711"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 02:42:40.915417"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.915417"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 02:42:40.917806"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.917806"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 02:42:40.920255"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.920255"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 02:42:40.922891"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.922891"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 02:42:40.925443"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.925443"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (1.0ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 02:42:40.927972"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.927972"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 02:42:40.932166"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.932166"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 02:42:40.935004"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.935004"]]  (4.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 02:42:40.941301"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.941301"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 02:42:40.943944"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.943944"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 02:42:40.946545"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.946545"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 02:42:40.949283"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.949283"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 02:42:40.951835"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.951835"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 02:42:40.954310"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.954310"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 02:42:40.957267"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.957267"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 02:42:40.960084"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.960084"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 02:42:40.962566"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.962566"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 02:42:40.964895"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.964895"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 02:42:40.967685"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.967685"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 02:42:40.970485"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.970485"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 02:42:40.973052"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.973052"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 02:42:40.976128"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.976128"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 02:42:40.978691"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.978691"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 02:42:40.982232"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.982232"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 02:42:40.984852"], ["exp_date", "2016-07-30"], ["secret_code", "3a8702b594771f3b"], ["updated_at", "2014-07-31 02:42:40.984852"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:42:55 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.6ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (8.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 9.9ms | ActiveRecord: 0.9ms) ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (2.1ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.5ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 02:43:14.697812"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.697812"]]  (1.3ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:43:14 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (18.7ms) Rendered application/_flash_messages.html.haml (9.2ms) Completed 200 OK in 51ms (Views: 49.4ms | ActiveRecord: 0.5ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 02:43:14.781222"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.781222"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 02:43:14.783812"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.783812"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 02:43:14.786291"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.786291"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 02:43:14.788911"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.788911"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 02:43:14.791443"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.791443"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 02:43:14.793964"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.793964"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 02:43:14.796296"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.796296"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 02:43:14.799188"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.799188"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 02:43:14.801611"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.801611"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 02:43:14.804011"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.804011"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 02:43:14.807019"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.807019"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 02:43:14.809851"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.809851"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 02:43:14.812513"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.812513"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 02:43:14.814850"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.814850"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 02:43:14.818550"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.818550"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 02:43:14.823195"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.823195"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 02:43:14.825743"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.825743"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 02:43:14.827954"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.827954"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 02:43:14.831266"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.831266"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 02:43:14.833699"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.833699"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 02:43:14.837369"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.837369"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 02:43:14.839937"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.839937"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 02:43:14.842284"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.842284"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 02:43:14.844805"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.844805"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 02:43:14.848465"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.848465"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 02:43:14.851663"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.851663"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 02:43:14.854539"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.854539"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 02:43:14.857853"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.857853"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 02:43:14.861236"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.861236"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 02:43:14.863745"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.863745"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 02:43:14.866617"], ["exp_date", "2016-07-30"], ["secret_code", "d4a0da0a7b79321a"], ["updated_at", "2014-07-31 02:43:14.866617"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:43:30 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.5ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (6.9ms) Rendered credit_card_infos/index.html.haml within layouts/application (12.9ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 18ms (Views: 15.3ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 22:43:30 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:43:30 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 02:43:43.889241"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:43.889241"]]  (1.3ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:43:43 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.0ms) Rendered credit_card_infos/index.html.haml within layouts/application (18.0ms) Rendered application/_flash_messages.html.haml (9.7ms) Completed 200 OK in 46ms (Views: 45.0ms | ActiveRecord: 0.4ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 02:43:43.969517"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:43.969517"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 02:43:43.972168"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:43.972168"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 02:43:43.974603"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:43.974603"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 02:43:43.977075"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:43.977075"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 02:43:43.979489"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:43.979489"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 02:43:43.981868"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:43.981868"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 02:43:43.984368"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:43.984368"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 02:43:43.987042"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:43.987042"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 02:43:43.989674"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:43.989674"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 02:43:43.992063"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:43.992063"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 02:43:43.996055"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:43.996055"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 02:43:43.999842"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:43.999842"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 02:43:44.002835"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.002835"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 02:43:44.006079"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.006079"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 02:43:44.009615"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.009615"]]  (1.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 02:43:44.012541"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.012541"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 02:43:44.015039"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.015039"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 02:43:44.017430"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.017430"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 02:43:44.020128"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.020128"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 02:43:44.023834"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.023834"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 02:43:44.026304"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.026304"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 02:43:44.029250"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.029250"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 02:43:44.032333"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.032333"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 02:43:44.034914"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.034914"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 02:43:44.037560"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.037560"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 02:43:44.040143"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.040143"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 02:43:44.042423"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.042423"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 02:43:44.044854"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.044854"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 02:43:44.047760"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.047760"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 02:43:44.051092"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.051092"]]  (169.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 02:43:44.222311"], ["exp_date", "2016-07-30"], ["secret_code", "8e522727cebbad6c"], ["updated_at", "2014-07-31 02:43:44.222311"]]  (80.9ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:43:46 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.7ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (6.4ms) Rendered credit_card_infos/index.html.haml within layouts/application (13.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 22:43:46 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:43:46 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.5ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 02:44:42.796980"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.796980"]]  (1.5ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:44:42 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.3ms) Rendered credit_card_infos/index.html.haml within layouts/application (18.2ms) Rendered application/_flash_messages.html.haml (15.4ms) Completed 200 OK in 52ms (Views: 50.6ms | ActiveRecord: 0.4ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 02:44:42.877216"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.877216"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 02:44:42.880415"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.880415"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 02:44:42.882967"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.882967"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 02:44:42.885482"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.885482"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 02:44:42.888019"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.888019"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 02:44:42.890389"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.890389"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 02:44:42.892799"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.892799"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 02:44:42.895173"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.895173"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 02:44:42.897668"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.897668"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 02:44:42.900009"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.900009"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 02:44:42.902682"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.902682"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 02:44:42.905459"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.905459"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 02:44:42.908079"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.908079"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 02:44:42.910479"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.910479"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 02:44:42.912711"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.912711"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 02:44:42.915056"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.915056"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 02:44:42.917782"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.917782"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 02:44:42.920772"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.920772"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 02:44:42.923251"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.923251"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 02:44:42.925546"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.925546"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 02:44:42.927967"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.927967"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 02:44:42.930351"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.930351"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 02:44:42.932663"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.932663"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 02:44:42.935226"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.935226"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 02:44:42.938052"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.938052"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 02:44:42.940547"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.940547"]]  (25.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 02:44:42.968435"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:42.968435"]]  (318.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 02:44:43.289508"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:43.289508"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 02:44:43.293611"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:43.293611"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 02:44:43.297501"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:43.297501"]]  (1.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 02:44:43.300819"], ["exp_date", "2016-07-30"], ["secret_code", "244a98fb135898ba"], ["updated_at", "2014-07-31 02:44:43.300819"]]  (3.0ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:44:45 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.6ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (5.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (10.7ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 22:44:45 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:44:45 -0400 Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 22:44:52 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.1ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-07-30 22:44:52 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.4ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 02:45:15.180784"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.180784"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 02:45:15.186338"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.186338"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 02:45:15.188984"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.188984"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 02:45:15.191447"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.191447"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 02:45:15.193820"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.193820"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 02:45:15.196107"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.196107"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 02:45:15.198467"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.198467"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 02:45:15.200749"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.200749"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 02:45:15.203262"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.203262"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 02:45:15.205988"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.205988"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 02:45:15.208499"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.208499"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 02:45:15.210873"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.210873"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 02:45:15.214102"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.214102"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 02:45:15.216678"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.216678"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 02:45:15.219138"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.219138"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 02:45:15.221716"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.221716"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 02:45:15.224154"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.224154"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 02:45:15.226705"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.226705"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 02:45:15.229235"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.229235"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 02:45:15.231928"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.231928"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 02:45:15.234956"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.234956"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 02:45:15.238225"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.238225"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 02:45:15.240973"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.240973"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 02:45:15.243883"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.243883"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 02:45:15.246690"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.246690"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 02:45:15.249178"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.249178"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 02:45:15.252091"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.252091"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 02:45:15.255426"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.255426"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 02:45:15.258491"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.258491"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 02:45:15.261231"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.261231"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 02:45:15.263561"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.263561"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:45:15 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (10.4ms) Rendered credit_card_infos/index.html.haml within layouts/application (21.5ms) Rendered application/_flash_messages.html.haml (10.6ms) Completed 200 OK in 51ms (Views: 50.0ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 22:45:15 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-07-30 22:45:15 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.5ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered credit_card_infos/index.html.haml within layouts/application (8.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.8ms)  (236.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 02:45:15.611472"], ["exp_date", "2016-07-30"], ["secret_code", "f2b7533e9e594168"], ["updated_at", "2014-07-31 02:45:15.611472"]]  (1.3ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:45:15 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered credit_card_infos/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.4ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 02:45:25.860893"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.860893"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:45:25 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.9ms) Rendered credit_card_infos/index.html.haml within layouts/application (18.8ms) Rendered application/_flash_messages.html.haml (9.4ms) Completed 200 OK in 47ms (Views: 46.4ms | ActiveRecord: 0.4ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 02:45:25.937184"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.937184"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 02:45:25.940796"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.940796"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 02:45:25.944398"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.944398"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 02:45:25.947132"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.947132"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 02:45:25.949622"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.949622"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 02:45:25.952226"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.952226"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 02:45:25.954790"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.954790"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 02:45:25.957283"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.957283"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 02:45:25.959641"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.959641"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 02:45:25.962013"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.962013"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 02:45:25.965672"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.965672"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 02:45:25.968308"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.968308"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 02:45:25.970805"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.970805"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 02:45:25.973242"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.973242"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 02:45:25.976377"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.976377"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 02:45:25.979032"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.979032"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 02:45:25.981440"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.981440"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 02:45:25.983900"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.983900"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 02:45:25.986714"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.986714"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 02:45:25.989891"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.989891"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 02:45:25.992336"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.992336"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 02:45:25.994753"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.994753"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 02:45:25.997259"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.997259"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 02:45:25.999605"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:25.999605"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 02:45:26.002729"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:26.002729"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 02:45:26.005119"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:26.005119"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 02:45:26.007470"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:26.007470"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 02:45:26.009909"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:26.009909"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 02:45:26.012144"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:26.012144"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 02:45:26.015518"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:26.015518"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 02:45:26.018213"], ["exp_date", "2016-07-30"], ["secret_code", "ad494f1c7c397db5"], ["updated_at", "2014-07-31 02:45:26.018213"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:45:26 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 22:45:26 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-07-30 22:45:26 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.4ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:30 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (1.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 99ms (Views: 95.4ms | ActiveRecord: 0.5ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.720191"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.720191"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.724860"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.724860"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.728063"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.728063"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.730661"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.730661"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.733178"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.733178"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.735873"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.735873"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.739266"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.739266"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.741716"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.741716"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.744045"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.744045"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.746340"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.746340"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.750153"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.750153"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.754507"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.754507"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.758464"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.758464"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.762314"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.762314"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.765670"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.765670"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.768996"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.768996"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.771689"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.771689"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.774162"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.774162"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.776584"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.776584"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.778941"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.778941"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.782290"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.782290"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.784688"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.784688"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.787861"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.787861"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.790194"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.790194"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.792500"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.792500"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.794847"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.794847"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.797233"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.797233"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.799503"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.799503"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.801818"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.801818"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.804141"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.804141"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.806485"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.806485"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:30 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (10.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 22:45:30 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (9.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.5ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-30 22:45:30 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (17.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.7ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:30 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.8ms) Rendered people/index.html.haml within layouts/application (2.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.2ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:30.899034"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:30.899034"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:33 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 14ms (Views: 11.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 22:45:33 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:33 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.045504"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.045504"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.048802"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.048802"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.051922"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.051922"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.055286"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.055286"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.058357"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.058357"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.061031"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.061031"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.063916"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.063916"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.067909"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.067909"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.071086"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.071086"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.073888"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.073888"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.076806"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.076806"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.080331"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.080331"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.083242"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.083242"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.087114"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.087114"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.090257"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.090257"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.093043"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.093043"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.095835"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.095835"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.098742"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.098742"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.101450"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.101450"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.104670"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.104670"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.107519"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.107519"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.110794"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.110794"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.113361"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.113361"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.116493"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.116493"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.120005"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.120005"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.122812"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.122812"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.126318"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.126318"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.129546"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.129546"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.132425"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.132425"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.135089"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.135089"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.137891"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.137891"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:34 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (1.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (6.3ms) Rendered people/index.html.haml within layouts/application (18.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 22ms (Views: 19.1ms | ActiveRecord: 2.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:34 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-30 22:45:34 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.3ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (20.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 24ms (Views: 21.3ms | ActiveRecord: 1.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:34 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.993361"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.993361"]]  (0.8ms) commit transaction  (0.6ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.997052"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.997052"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:34.999460"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:34.999460"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.002587"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.002587"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.005251"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.005251"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.008299"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.008299"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.011110"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.011110"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.013497"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.013497"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.016195"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.016195"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.018716"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.018716"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.021645"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.021645"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.024397"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.024397"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.027088"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.027088"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.029515"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.029515"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.031692"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.031692"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.034522"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.034522"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.037996"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.037996"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.041376"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.041376"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.044021"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.044021"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.046343"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.046343"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.048862"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.048862"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.051227"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.051227"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.053589"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.053589"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.055928"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.055928"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.058482"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.058482"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.060929"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.060929"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.064388"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.064388"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.066894"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.066894"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.070040"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.070040"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.072671"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.072671"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.075330"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.075330"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (11.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.7ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.105757"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.105757"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.109395"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.109395"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.113213"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.113213"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.116190"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.116190"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.119273"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.119273"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.122483"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.122483"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.125181"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.125181"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.128199"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.128199"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.131485"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.131485"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.134266"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.134266"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.137517"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.137517"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.141007"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.141007"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.143958"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.143958"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.146728"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.146728"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.149279"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.149279"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.152051"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.152051"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.154934"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.154934"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.158210"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.158210"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.160624"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.160624"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.163224"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.163224"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.166231"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.166231"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.170134"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.170134"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.173185"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.173185"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.176396"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.176396"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.179313"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.179313"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.182565"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.182565"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.185967"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.185967"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.189685"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.189685"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.192371"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.192371"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.194999"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.194999"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.197941"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.197941"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (14.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:35 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-30 22:45:35 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.2ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:35 -0400  (3.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.672258"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.672258"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.674807"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.674807"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.677310"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.677310"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.679623"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.679623"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.682141"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.682141"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.684641"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.684641"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.687680"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.687680"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.690515"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.690515"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.692915"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.692915"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.695253"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.695253"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.697567"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.697567"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.699962"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.699962"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.702486"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.702486"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.705357"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.705357"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.708298"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.708298"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.710833"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.710833"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.713960"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.713960"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.716557"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.716557"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.719523"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.719523"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.722543"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.722543"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.725838"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.725838"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.729136"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.729136"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (1.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.768248"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.768248"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.773898"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.773898"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.776782"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.776782"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.780507"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.780507"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.782896"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.782896"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.785523"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.785523"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.788638"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.788638"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.791042"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.791042"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:35.793570"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:35.793570"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (12.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:35 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-30 22:45:36 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (14.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:36 -0400  (3.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.514361"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.514361"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.518192"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.518192"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.522755"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.522755"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.525417"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.525417"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.527871"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.527871"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.530233"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.530233"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.532669"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.532669"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.535404"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.535404"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.538724"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.538724"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.541197"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.541197"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.543816"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.543816"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.546273"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.546273"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.548669"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.548669"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.551445"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.551445"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.555216"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.555216"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.557986"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.557986"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.560567"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.560567"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.564043"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.564043"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.566565"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.566565"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.569956"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.569956"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.572665"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.572665"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.575497"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.575497"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.578031"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.578031"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.581731"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.581731"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.584392"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.584392"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.587412"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.587412"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.590852"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.590852"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.594588"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.594588"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.597017"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.597017"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.599493"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.599493"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:36.602179"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:36.602179"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 22:45:36 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (9.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:36 -0400 Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-07-30 22:45:37 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.6ms) Rendered people/index.html.haml within layouts/application (14.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:37 -0400 Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 22:45:37 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.9ms) Rendered people/index.html.haml within layouts/application (12.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:37 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-07-30 22:45:38 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (11.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 12.9ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:38 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (2.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.8ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:39 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-30 22:45:39 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:39 -0400  (3.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.456549"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.456549"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.459216"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.459216"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.463162"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.463162"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.466035"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.466035"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.468661"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.468661"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.471582"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.471582"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.474464"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.474464"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.477095"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.477095"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.479996"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.479996"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.482703"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.482703"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.486136"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.486136"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.489173"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.489173"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.491968"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.491968"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.494515"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.494515"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.497192"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.497192"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.499803"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.499803"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.503140"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.503140"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.505984"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.505984"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.508531"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.508531"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.511950"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.511950"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.514618"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.514618"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.517331"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.517331"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.520640"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.520640"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.523598"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.523598"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.527550"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.527550"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.530510"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.530510"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.533433"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_66@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.533433"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.536292"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.536292"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.539854"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.539854"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.542880"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.542880"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.545987"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.545987"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.548783"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.548783"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.551715"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.551715"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.554626"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.554626"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.557562"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_20@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.557562"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.560610"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.560610"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.563570"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.563570"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.566389"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.566389"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.569619"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.569619"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.572612"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.572612"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.575720"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.575720"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.578549"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.578549"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.581653"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.581653"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.584499"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.584499"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.587696"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.587696"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.590616"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.590616"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.593532"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.593532"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.596655"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.596655"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.599341"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.599341"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:39.602550"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:39.602550"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:39 -0400  (3.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:41.802654"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_188@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:41.802654"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:41.805568"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_189@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:41.805568"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:41.808188"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_190@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:41.808188"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:41.811220"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_191@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:41.811220"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:41.813818"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:41.813818"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-30 22:45:41 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (5.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.4ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:41.849409"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:41.849409"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:45:41 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (16.7ms) Rendered people/edit.html.haml within layouts/application (18.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.7ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:41.891982"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:41.891982"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (3.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:41 -0400  (0.1ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-30 22:45:42 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (3.3ms) commit transaction Redirected to http://127.0.0.1:59176/people Completed 302 Found in 7ms (ActiveRecord: 4.1ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (7.0ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (10.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:42 -0400  (0.3ms) SELECT COUNT(*) FROM "people"  (2.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:45:43 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.0ms) Rendered people/new.html.haml within layouts/application (9.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 22:45:43 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"02", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.2ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (1.8ms) Rendered people/_form.html.haml (6.5ms) Rendered people/new.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 14ms (Views: 8.1ms | ActiveRecord: 0.2ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:45:43 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.9ms) Rendered people/new.html.haml within layouts/application (7.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:43.819242"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:43.819242"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:45:43 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.0ms) Rendered people/edit.html.haml within layouts/application (7.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:45:43 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.5ms) Rendered people/new.html.haml within layouts/application (8.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:43 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 22:45:44 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"22", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:44.725477"], ["dob", "2012-07-30 22:45:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:44.725477"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:59176/people Completed 302 Found in 5ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:45:44 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:45.673767"], ["dob", "2012-07-31 02:45:45.672857"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:45.673767"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:45:45 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.5ms) Rendered people/edit.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 22:45:45 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"22", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 22:45:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 02:45:45.723706"]]  (0.7ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.4ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:45:45 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.3ms) Rendered people/new.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 22:45:45 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"02", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:45.774886"], ["dob", "2014-07-31 02:45:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 02:45:45.774886"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 22:45:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (1.0ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.4ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:45.797136"], ["dob", "1984-07-31 02:45:23.046242"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:45:45.797136"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:45:45 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.9ms) Rendered people/edit.html.haml within layouts/application (8.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 22:45:45 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"02", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 02:45:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 02:45:45.825242"]]  (287.8ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 293ms (ActiveRecord: 288.7ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:45:46 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.1ms) Rendered people/edit.html.haml within layouts/application (8.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.2ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:45:46 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.9ms) Rendered people/new.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 22:45:46 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"02", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:45:46.171893"], ["dob", "2014-07-31 02:45:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 02:45:46.171893"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 3ms (ActiveRecord: 1.1ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:45:46 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.2ms) Rendered people/new.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:46:40 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (8.0ms) Rendered people/index.html.haml within layouts/application (23.6ms) Rendered application/_flash_messages.html.haml (9.3ms) Completed 200 OK in 54ms (Views: 50.3ms | ActiveRecord: 0.5ms) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.674281"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.674281"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.680575"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.680575"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.684123"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.684123"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.687184"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.687184"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.689719"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.689719"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.692308"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.692308"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.694885"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.694885"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.697405"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.697405"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.700113"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.700113"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.703280"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.703280"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.706784"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.706784"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.710322"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.710322"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.713010"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.713010"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.716716"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.716716"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.719518"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.719518"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.722104"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.722104"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.724639"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.724639"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.728314"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.728314"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.731045"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.731045"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.735822"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.735822"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.740135"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.740135"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.744796"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.744796"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.749173"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.749173"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.753501"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.753501"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.757526"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.757526"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.760910"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.760910"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.764733"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.764733"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.768111"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.768111"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.772320"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.772320"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.775231"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.775231"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.778003"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.778003"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.780712"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.780712"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.783516"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.783516"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.786721"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.786721"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.789949"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.789949"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.792949"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.792949"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.795784"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.795784"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.798471"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.798471"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.801418"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.801418"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.804385"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.804385"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.807383"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.807383"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.810181"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.810181"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.813017"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.813017"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.816346"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.816346"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.819570"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.819570"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.822463"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.822463"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.825425"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.825425"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.828515"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.828515"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.831422"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.831422"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:10.834214"], ["dob", "1984-07-31 02:47:07.809650"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:10.834214"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (3.2ms) Rendered application/_search_form.html.haml (2.8ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (13.3ms) Rendered people/index.html.haml within layouts/application (49.9ms) Rendered application/_flash_messages.html.haml (9.4ms) Completed 200 OK in 85ms (Views: 82.2ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 22:47:13 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:47:13 -0400 Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-30 22:47:13 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (12.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.9ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:47:25 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (25.6ms) Rendered people/new.html.haml within layouts/application (30.3ms) Rendered application/_flash_messages.html.haml (13.0ms) Completed 200 OK in 68ms (Views: 63.3ms | ActiveRecord: 0.4ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 22:47:25 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"02", "dob(5i)"=>"47", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.5ms) Rendered people/_form.html.haml (5.8ms) Rendered people/new.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 13ms (Views: 7.4ms | ActiveRecord: 0.1ms)  (2.2ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:47:25 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.2ms) Rendered people/new.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 22:47:25 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"02", "dob(5i)"=>"47", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:25.703203"], ["dob", "2014-07-31 02:47:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 02:47:25.703203"]]  (1.5ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 7ms (ActiveRecord: 1.9ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:25 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (1.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (16.9ms) Rendered application/_flash_messages.html.haml (0.8ms) Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.4ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:47:25 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.4ms) Rendered people/new.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 22:47:25 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"02", "dob(5i)"=>"47", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:25.764700"], ["dob", "2014-07-31 02:47:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 02:47:25.764700"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:47:25 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.2ms) Rendered people/new.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:25.863307"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:25.863307"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:47:25 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (5.9ms) Rendered people/edit.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 22:47:25 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"02", "dob(5i)"=>"47", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 02:47:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 02:47:25.886990"]]  (1.2ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.6ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:47:25 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.6ms) Rendered people/edit.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:25.915294"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:25.915294"]]  (1.1ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:47:25 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (9.6ms) Rendered people/edit.html.haml within layouts/application (9.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:47:25 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.4ms) Rendered people/new.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:25.964214"], ["dob", "2012-07-31 02:47:25.963098"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:25.964214"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:47:25 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.0ms) Rendered people/edit.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 22:47:25 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"22", "dob(5i)"=>"47", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 22:47:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 02:47:25.999809"]]  (1.6ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 7ms (ActiveRecord: 2.3ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:26 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.3ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:47:28 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (12.0ms) Rendered people/new.html.haml within layouts/application (12.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 22:47:28 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:47:28 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 22:47:29 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"22", "dob(5i)"=>"47", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.3ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:29.512708"], ["dob", "2012-07-30 22:47:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:29.512708"]]  (1.1ms) commit transaction Redirected to http://127.0.0.1:59851/people Completed 302 Found in 6ms (ActiveRecord: 1.8ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.5ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:30 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.532940"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.532940"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.535742"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.535742"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.539095"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.539095"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.542205"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.542205"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.544688"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.544688"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.547199"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.547199"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.549790"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.549790"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.552114"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.552114"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.555737"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.555737"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.558183"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.558183"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.561391"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.561391"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.563974"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.563974"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.566990"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.566990"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.570226"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.570226"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.572837"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.572837"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.575366"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.575366"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.577765"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.577765"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.580145"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.580145"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.582554"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.582554"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.585048"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.585048"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.587591"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.587591"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.590117"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.590117"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.592470"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.592470"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.595243"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.595243"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.597632"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.597632"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.600390"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.600390"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.603111"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.603111"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.606531"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.606531"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.609141"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.609141"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.611615"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.611615"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:30.614193"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:30.614193"]]  (0.9ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 22:47:30 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (10.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 22:47:31 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (10.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 11.9ms | ActiveRecord: 0.8ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 22:47:31 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.2ms) Rendered people/index.html.haml within layouts/application (11.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.7ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 22:47:32 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (10.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 11.9ms | ActiveRecord: 0.6ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.099203"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.099203"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.103148"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.103148"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.106321"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.106321"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.109100"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.109100"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.111485"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.111485"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.114359"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.114359"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.118329"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.118329"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.120940"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.120940"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.123819"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.123819"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.126173"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.126173"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.128792"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.128792"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.132532"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.132532"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.135561"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.135561"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.138015"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.138015"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.141724"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.141724"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.144128"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.144128"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.146611"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.146611"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.149667"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.149667"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.153729"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.153729"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.157009"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.157009"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.159491"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.159491"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.161870"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.161870"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.164310"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.164310"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.167662"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.167662"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.171309"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.171309"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.174331"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.174331"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.176781"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.176781"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.179255"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.179255"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.182442"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.182442"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.185695"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.185695"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.188445"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.188445"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:33 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (11.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.6ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.218191"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.218191"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.221462"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.221462"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.224716"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.224716"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.227263"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.227263"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.229844"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.229844"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.233053"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.233053"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.236283"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.236283"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.239769"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.239769"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.242300"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.242300"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.244663"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.244663"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.247441"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.247441"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.250903"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.250903"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.253306"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.253306"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.256231"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.256231"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.258643"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.258643"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.261777"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.261777"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.264569"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.264569"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.268065"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.268065"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.271041"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.271041"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.273456"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.273456"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.275697"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.275697"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.278104"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.278104"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.280476"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.280476"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.283412"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.283412"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.286239"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.286239"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.289099"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.289099"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.291658"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.291658"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.294579"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.294579"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.297247"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.297247"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.300441"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.300441"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:33.303096"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:33.303096"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:33 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (11.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.0ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-30 22:47:33 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (16.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 0.9ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.6ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.227414"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.227414"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.230687"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.230687"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.233864"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.233864"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.236521"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.236521"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.238944"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.238944"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.241141"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.241141"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.243568"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.243568"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.246007"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.246007"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.248387"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.248387"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.250631"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.250631"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.253024"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.253024"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.255501"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.255501"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.257993"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.257993"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.260343"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.260343"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.263263"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.263263"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.266709"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.266709"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.269996"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.269996"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.272334"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.272334"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.274668"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.274668"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.277050"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.277050"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.279446"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.279446"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.281774"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.281774"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.284345"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.284345"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.286842"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.286842"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.289237"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.289237"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.291425"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.291425"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.294764"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.294764"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.297529"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.297529"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.299891"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.299891"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.302186"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.302186"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:34.304749"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:34.304749"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:34 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (9.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.5ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-30 22:47:34 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (19.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.7ms)  (2.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.023410"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.023410"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.026426"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.026426"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.028843"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.028843"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.032167"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.032167"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.035348"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.035348"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.037960"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.037960"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.040291"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.040291"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.042876"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.042876"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.045345"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.045345"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.047759"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.047759"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.050373"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.050373"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.054145"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.054145"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.056667"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.056667"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.059356"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.059356"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.062048"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.062048"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.065270"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.065270"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.068453"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.068453"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.071100"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.071100"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.073411"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.073411"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.075844"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.075844"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.078249"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.078249"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.081400"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.081400"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.083938"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.083938"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.087262"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.087262"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.089807"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.089807"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.092393"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.092393"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.095560"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.095560"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.098055"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.098055"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.100617"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.100617"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.104435"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.104435"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.107054"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.107054"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (12.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-30 22:47:35 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (10.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.6ms)  (2.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.562870"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.562870"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.566100"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.566100"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.568780"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.568780"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.571370"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.571370"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.574811"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.574811"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.577416"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.577416"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.579907"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.579907"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.582453"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.582453"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.585019"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.585019"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.587762"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.587762"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.590264"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.590264"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.593482"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.593482"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.596087"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.596087"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.599271"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.599271"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.602276"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.602276"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.604734"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.604734"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.607114"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.607114"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.610119"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.610119"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.612569"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.612569"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.616276"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.616276"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.619482"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.619482"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.622965"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.622965"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.626341"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.626341"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.629228"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.629228"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.631721"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.631721"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.634323"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.634323"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.636812"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.636812"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.640452"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.640452"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.642879"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.642879"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.645672"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.645672"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.648483"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.648483"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.5ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 22:47:35 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.5ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-30 22:47:35 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (15.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.6ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:35.739802"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_190@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:35.739802"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.4ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:36.114836"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_191@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:36.114836"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.4ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-30 22:47:36 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.3ms) commit transaction Redirected to http://127.0.0.1:59851/people Completed 302 Found in 4ms (ActiveRecord: 1.9ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.2ms)  (0.3ms) SELECT COUNT(*) FROM "people"  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:37.895890"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_192@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:37.895890"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:47:37 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (13.5ms) Rendered people/edit.html.haml within layouts/application (13.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.2ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-30 22:47:38 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.388465"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_193@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.388465"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.391459"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_194@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.391459"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.394228"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_195@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.394228"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.397548"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoe_196@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.397548"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.400512"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.400512"]]  (1.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:38 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (5.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-30 22:47:38 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.4ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.437601"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.437601"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.440415"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.440415"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.443026"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.443026"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.445719"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.445719"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.448244"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.448244"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.451377"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.451377"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.453945"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.453945"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.456475"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.456475"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.459069"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.459069"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.462289"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.462289"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.464914"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.464914"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.467998"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.467998"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.470648"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.470648"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.473167"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.473167"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.475681"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.475681"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.478420"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.478420"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.481506"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.481506"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.484666"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.484666"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.487235"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.487235"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.489918"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.489918"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.492392"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.492392"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.495051"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.495051"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.497775"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.497775"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.500374"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.500374"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.503098"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.503098"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.505644"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.505644"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.508231"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.508231"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.510961"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_66@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.510961"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.513527"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.513527"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.516420"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.516420"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.520360"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.520360"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.523456"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.523456"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.527063"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.527063"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.529931"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.529931"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.532796"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.532796"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.535642"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.535642"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.538632"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.538632"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.541734"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.541734"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.544459"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.544459"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.547251"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.547251"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.550654"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.550654"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.553493"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.553493"]]  (1.6ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.556773"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.556773"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.560104"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.560104"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.564356"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.564356"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.567888"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.567888"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.570972"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.570972"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.573936"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.573936"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.576873"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.576873"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:47:38.579894"], ["dob", "1984-07-31 02:47:22.660689"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:47:38.579894"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:47:38 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (13.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.9ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-30 22:47:38 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.1ms) Rendered people/index.html.haml within layouts/application (13.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 1.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 02:47:44.533483"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.533483"]]  (2.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 02:47:44.537927"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.537927"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 02:47:44.542256"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.542256"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 02:47:44.545633"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.545633"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 02:47:44.549214"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.549214"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 02:47:44.552192"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.552192"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 02:47:44.554992"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.554992"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 02:47:44.559051"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.559051"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 02:47:44.561973"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.561973"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 02:47:44.564632"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.564632"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 02:47:44.567627"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.567627"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 02:47:44.570683"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.570683"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 02:47:44.573398"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.573398"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 02:47:44.576014"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.576014"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 02:47:44.578658"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.578658"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 02:47:44.582275"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.582275"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 02:47:44.585022"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.585022"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 02:47:44.587627"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.587627"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 02:47:44.590218"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.590218"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 02:47:44.593281"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.593281"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 02:47:44.596573"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.596573"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 02:47:44.599318"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.599318"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 02:47:44.602857"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.602857"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 02:47:44.605736"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.605736"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 02:47:44.608319"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.608319"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 02:47:44.611462"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.611462"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 02:47:44.614854"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.614854"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 02:47:44.618503"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.618503"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 02:47:44.621699"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.621699"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 02:47:44.624319"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.624319"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 02:47:44.626931"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.626931"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:47:44 -0400 Processing by CreditCardInfosController#index as HTML Completed 500 Internal Server Error in 1ms  (2.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 02:47:44.646664"], ["exp_date", "2016-07-30"], ["secret_code", "707f59f693c2b12b"], ["updated_at", "2014-07-31 02:47:44.646664"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:47:44 -0400 Processing by CreditCardInfosController#index as HTML Completed 500 Internal Server Error in 1ms ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:48:08 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (26.5ms) Rendered people/new.html.haml within layouts/application (30.8ms) Rendered application/_flash_messages.html.haml (8.8ms) Completed 200 OK in 61ms (Views: 58.3ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 22:48:08 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"02", "dob(5i)"=>"48", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.5ms) Rendered people/_form.html.haml (6.6ms) Rendered people/new.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 14ms (Views: 8.3ms | ActiveRecord: 0.1ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:48:08 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.3ms) Rendered people/new.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 22:48:08 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"02", "dob(5i)"=>"48", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:08.375493"], ["dob", "2014-07-31 02:48:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 02:48:08.375493"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 7ms (ActiveRecord: 1.7ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:48:08 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.4ms) Rendered people/new.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:08.406338"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:08.406338"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:48:08 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.5ms) Rendered people/edit.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 9.8ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 22:48:08 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"02", "dob(5i)"=>"48", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 02:48:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 02:48:08.431832"]]  (0.7ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.1ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:48:08 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.1ms) Rendered people/edit.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.1ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:48:08 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.6ms) Rendered people/new.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 22:48:08 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"02", "dob(5i)"=>"48", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:08.546132"], ["dob", "2014-07-31 02:48:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 02:48:08.546132"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (2.3ms) Rendered application/_search_form.html.haml (2.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.3ms) Rendered people/index.html.haml within layouts/application (20.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.6ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:08.584897"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:08.584897"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:48:08 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (13.6ms) Rendered people/edit.html.haml within layouts/application (13.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.1ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:48:08 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.0ms) Rendered people/new.html.haml within layouts/application (8.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:08.639240"], ["dob", "2012-07-31 02:48:08.638337"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:08.639240"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:48:08 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.4ms) Rendered people/edit.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 22:48:08 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"22", "dob(5i)"=>"48", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 22:48:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 02:48:08.672206"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.8ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.3ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:48:11 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (12.0ms) Rendered people/new.html.haml within layouts/application (12.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 22:48:11 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:48:11 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 22:48:12 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"22", "dob(5i)"=>"48", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:12.227047"], ["dob", "2012-07-30 22:48:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:12.227047"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:60392/people Completed 302 Found in 5ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:12 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.0ms | ActiveRecord: 0.6ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:13.223031"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:13.223031"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.6ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-30 22:48:13 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.2ms) commit transaction Redirected to http://127.0.0.1:60392/people Completed 302 Found in 4ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.3ms)  (0.3ms) SELECT COUNT(*) FROM "people"  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:14.996105"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:14.996105"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:48:15 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.3ms) Rendered people/edit.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.8ms) Rendered people/index.html.haml within layouts/application (2.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-30 22:48:15 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.8ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.2ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.447158"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_6@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.447158"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.450221"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_7@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.450221"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.452922"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_8@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.452922"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.455483"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_9@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.455483"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.458050"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.458050"]]  (0.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (6.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 75ms (Views: 7.7ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-30 22:48:15 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.3ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.559860"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.559860"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.562759"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.562759"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.565706"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.565706"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.568520"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.568520"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.571042"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.571042"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.573615"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.573615"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.575934"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.575934"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.578430"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.578430"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.580873"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.580873"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.583369"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.583369"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.586257"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_20@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.586257"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.588815"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.588815"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.591449"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.591449"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.593927"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.593927"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.596418"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.596418"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.600002"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.600002"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.603135"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.603135"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.605678"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.605678"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.608212"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.608212"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.610931"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.610931"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.613463"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.613463"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.615871"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.615871"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.618740"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.618740"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.621373"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.621373"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.623817"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.623817"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.626260"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.626260"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.629896"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.629896"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.632619"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.632619"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.635496"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.635496"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.638263"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.638263"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.640772"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.640772"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.643608"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.643608"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.646309"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.646309"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.649345"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.649345"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.652461"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.652461"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.655126"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.655126"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.657723"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.657723"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.660214"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.660214"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.663104"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.663104"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.666254"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.666254"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.669986"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.669986"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.672671"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.672671"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.675447"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.675447"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.678378"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.678378"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.681163"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.681163"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.684559"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.684559"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.687691"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.687691"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.690461"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.690461"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.693840"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.693840"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:15.696638"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:15.696638"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.6ms) Rendered people/index.html.haml within layouts/application (12.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.7ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-30 22:48:15 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (11.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 12.2ms | ActiveRecord: 0.9ms)  (1.9ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.888907"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.888907"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.891561"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.891561"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.893975"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.893975"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.896513"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.896513"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.898741"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.898741"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.901485"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.901485"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.903885"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.903885"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.906147"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.906147"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.908535"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.908535"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.910837"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.910837"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.913083"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.913083"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.915284"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.915284"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.917968"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.917968"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.920541"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.920541"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.922745"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.922745"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.925338"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.925338"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.927623"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.927623"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.930024"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.930024"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.933115"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.933115"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.936475"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.936475"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.938958"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.938958"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.941495"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.941495"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.944722"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.944722"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.947131"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.947131"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.949505"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.949505"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.951811"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.951811"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.954129"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.954129"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.956479"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.956479"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.958873"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.958873"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.961172"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.961172"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:16.963634"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:16.963634"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 22:48:16 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (9.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 22:48:17 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (14.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.9ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 22:48:18 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.5ms) Rendered people/index.html.haml within layouts/application (11.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.6ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 22:48:18 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (11.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.6ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.856001"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.856001"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.858687"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.858687"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.862047"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.862047"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.865165"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.865165"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.867707"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.867707"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.870363"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.870363"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.872918"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.872918"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.875227"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.875227"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.878088"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.878088"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.880911"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.880911"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.883922"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.883922"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.886586"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.886586"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.889223"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.889223"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.891582"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.891582"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.895334"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.895334"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.897971"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.897971"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.901355"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.901355"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.904584"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.904584"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.907368"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.907368"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.910355"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.910355"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.913728"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.913728"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.917552"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.917552"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.920261"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.920261"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.923668"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.923668"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.926611"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.926611"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.929441"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.929441"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.932694"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.932694"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.935806"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.935806"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.938445"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.938445"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.940813"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.940813"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:19.943775"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:19.943775"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (13.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-30 22:48:20 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (18.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 22ms (Views: 19.5ms | ActiveRecord: 1.0ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.897596"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.897596"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.901177"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.901177"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.903793"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.903793"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.906118"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.906118"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.908538"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.908538"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.910942"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.910942"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.913519"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.913519"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.916506"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.916506"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.919081"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.919081"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.921493"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.921493"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.924374"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.924374"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.926922"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.926922"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.929776"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.929776"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.933217"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.933217"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.936511"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.936511"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.939045"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.939045"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.941430"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.941430"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.943911"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.943911"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.946323"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.946323"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.948853"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.948853"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.952405"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.952405"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.955982"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.955982"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.958608"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.958608"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.960996"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.960996"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.964248"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.964248"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.966994"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.966994"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.971063"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.971063"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.973646"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.973646"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.976542"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.976542"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.979143"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.979143"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:20.982142"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:20.982142"]]  (2.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (13.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 1.0ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-30 22:48:21 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (14.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.6ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.734189"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.734189"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.737027"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.737027"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.740484"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.740484"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.742810"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.742810"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.745143"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.745143"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.747602"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.747602"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.750022"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.750022"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.752564"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.752564"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.755043"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.755043"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.757389"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.757389"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.759662"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.759662"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.761998"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.761998"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.765374"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.765374"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.768392"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.768392"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.770914"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.770914"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.774317"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.774317"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.776753"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.776753"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.779147"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.779147"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.781535"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.781535"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.784060"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.784060"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.786379"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.786379"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.788975"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.788975"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.791589"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.791589"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.793927"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.793927"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.796387"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.796387"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.798703"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.798703"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.800998"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.800998"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.803467"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.803467"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.805912"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.805912"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.808227"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.808227"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:21.811504"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:21.811504"]]  (1.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:21 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (17.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.8ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-30 22:48:22 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (10.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 11.2ms | ActiveRecord: 0.6ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.293307"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.293307"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.296690"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.296690"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.299670"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.299670"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.302150"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.302150"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.304510"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.304510"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.306865"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.306865"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.309104"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.309104"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.312028"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.312028"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.316015"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.316015"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.319793"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.319793"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.323393"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.323393"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.326736"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.326736"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.330705"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.330705"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.334189"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.334189"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.337512"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.337512"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.341181"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.341181"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.343823"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.343823"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.347033"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.347033"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.350199"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.350199"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.353290"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.353290"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.356502"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.356502"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.359039"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.359039"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.362178"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.362178"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.364632"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.364632"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.367349"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.367349"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.369884"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.369884"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.372281"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.372281"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.374792"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.374792"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.377173"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.377173"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.380052"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.380052"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.383235"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.383235"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:22 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.8ms) Rendered people/index.html.haml within layouts/application (18.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.9ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.423664"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.423664"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:22 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:22 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.745652"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.745652"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.748808"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.748808"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.752177"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.752177"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.754996"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.754996"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.757590"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.757590"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.760263"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.760263"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.763720"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.763720"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.767229"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.767229"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.770117"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.770117"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.772879"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.772879"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.775977"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.775977"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.778648"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.778648"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.781037"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.781037"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.783514"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.783514"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.786234"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.786234"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.788965"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.788965"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.791445"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.791445"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.794051"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.794051"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.796489"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.796489"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.799001"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.799001"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.801435"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.801435"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.804197"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.804197"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.807168"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.807168"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.809654"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.809654"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.812261"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.812261"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.814969"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.814969"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.817964"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.817964"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.821873"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.821873"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.825097"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.825097"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.827934"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.827934"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:48:22.830644"], ["dob", "1984-07-31 02:48:05.357285"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:48:22.830644"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:48:22 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (10.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.5ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 22:48:22 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-30 22:48:22 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (14.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.5ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 02:48:27.644715"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.644715"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 02:48:27.648159"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.648159"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 02:48:27.651201"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.651201"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 02:48:27.654573"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.654573"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 02:48:27.657667"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.657667"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 02:48:27.660383"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.660383"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 02:48:27.663125"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.663125"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 02:48:27.665635"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.665635"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 02:48:27.668168"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.668168"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 02:48:27.670854"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.670854"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 02:48:27.673458"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.673458"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 02:48:27.676036"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.676036"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 02:48:27.678564"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.678564"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 02:48:27.681130"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.681130"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 02:48:27.683978"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.683978"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 02:48:27.686947"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.686947"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 02:48:27.689677"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.689677"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 02:48:27.692301"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.692301"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 02:48:27.695058"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.695058"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 02:48:27.697829"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.697829"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 02:48:27.700642"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.700642"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 02:48:27.703481"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.703481"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 02:48:27.706151"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.706151"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 02:48:27.708770"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.708770"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 02:48:27.711529"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.711529"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 02:48:27.714298"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.714298"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 02:48:27.717328"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.717328"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 02:48:27.720039"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.720039"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 02:48:27.722730"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.722730"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 02:48:27.726015"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.726015"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 02:48:27.729264"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.729264"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:48:27 -0400 Processing by CreditCardInfosController#index as HTML Completed 500 Internal Server Error in 1ms  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 02:48:27.747599"], ["exp_date", "2016-07-30"], ["secret_code", "0333f6fd916a7e57"], ["updated_at", "2014-07-31 02:48:27.747599"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:48:27 -0400 Processing by CreditCardInfosController#index as HTML Completed 500 Internal Server Error in 1ms ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 02:49:17.232765"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:49:17.232765"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:49:17 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (19.9ms) Rendered application/_flash_messages.html.haml (11.0ms) Completed 200 OK in 58ms (Views: 56.8ms | ActiveRecord: 0.4ms)  (2.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.7ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 02:53:42.349815"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.349815"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 02:53:42.354121"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.354121"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 02:53:42.357155"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.357155"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 02:53:42.360027"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.360027"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 02:53:42.362737"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.362737"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 02:53:42.365369"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.365369"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 02:53:42.368199"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.368199"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 02:53:42.371576"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.371576"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 02:53:42.375004"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.375004"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 02:53:42.378223"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.378223"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 02:53:42.381017"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.381017"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 02:53:42.383745"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.383745"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 02:53:42.386360"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.386360"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 02:53:42.388781"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.388781"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 02:53:42.391252"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.391252"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 02:53:42.393969"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.393969"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 02:53:42.397308"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.397308"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 02:53:42.399912"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.399912"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 02:53:42.402975"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.402975"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 02:53:42.405464"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.405464"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 02:53:42.408294"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.408294"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 02:53:42.410829"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.410829"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 02:53:42.413332"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.413332"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 02:53:42.416812"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.416812"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 02:53:42.419169"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.419169"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 02:53:42.421519"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.421519"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 02:53:42.423891"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.423891"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 02:53:42.426318"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.426318"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 02:53:42.429167"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.429167"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 02:53:42.432216"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.432216"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 02:53:42.434867"], ["exp_date", "2016-07-30"], ["secret_code", "7e0176abdcd15118"], ["updated_at", "2014-07-31 02:53:42.434867"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:53:42 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered credit_card_infos/index.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 22:53:42 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-07-30 22:53:42 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (73.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 76ms (Views: 74.7ms | ActiveRecord: 0.4ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:53:47 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (2.8ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (15.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 39ms (Views: 34.8ms | ActiveRecord: 0.5ms)  (1.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.349112"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.349112"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.352140"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.352140"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.355882"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.355882"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.358479"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.358479"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.361016"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.361016"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.363568"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.363568"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.365819"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.365819"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.368192"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.368192"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.370859"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.370859"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.373229"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.373229"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.376087"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.376087"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.378880"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.378880"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.381408"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.381408"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.383822"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.383822"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.387459"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.387459"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.391657"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.391657"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.396839"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.396839"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.400981"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.400981"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.404788"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.404788"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.410241"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.410241"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.414243"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.414243"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.417972"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.417972"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.421756"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.421756"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.425479"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.425479"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.429631"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.429631"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.433853"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.433853"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.437373"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.437373"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.441224"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.441224"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.446011"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.446011"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.449833"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.449833"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.453020"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.453020"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:53:47 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (13.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.7ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 22:53:47 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (12.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.8ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-30 22:53:47 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (14.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.6ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:53:47 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (2.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:47.563654"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:47.563654"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:53:50 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (9.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 14ms (Views: 11.9ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 22:53:50 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:53:50 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.6ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.851770"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.851770"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.854992"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.854992"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.857689"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.857689"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.860834"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.860834"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.863632"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.863632"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.866375"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.866375"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.869395"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.869395"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.872958"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.872958"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.875551"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.875551"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.878659"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.878659"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.882333"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.882333"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.885415"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.885415"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.888094"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.888094"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.890858"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.890858"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.894579"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.894579"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.898524"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.898524"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.901263"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.901263"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.903731"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.903731"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.906300"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.906300"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.908963"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.908963"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.911511"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.911511"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.914354"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.914354"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.916961"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.916961"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.919597"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.919597"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.922364"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.922364"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.924883"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.924883"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.928367"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.928367"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.931834"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.931834"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.934478"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.934478"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.937305"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.937305"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.940028"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.940028"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:53:50 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (11.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.7ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.970355"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.970355"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.973214"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.973214"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.976758"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.976758"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.979779"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.979779"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.982261"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.982261"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.984763"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.984763"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.987466"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.987466"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.990026"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.990026"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.992984"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.992984"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.995612"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.995612"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:50.999012"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:50.999012"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.001906"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.001906"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.004476"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.004476"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.007037"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.007037"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.009535"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.009535"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.013052"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.013052"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.016551"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.016551"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.019315"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.019315"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.021977"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.021977"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.024454"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.024454"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.026970"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.026970"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.029497"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.029497"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.032112"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.032112"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.034624"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.034624"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.037188"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.037188"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.039636"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.039636"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.042191"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.042191"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.045346"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.045346"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.047998"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.047998"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.050536"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.050536"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.053132"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.053132"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:53:51 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (15.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:53:51 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-30 22:53:51 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.4ms) Rendered people/index.html.haml within layouts/application (14.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:53:51 -0400  (1.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.593979"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.593979"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.598296"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.598296"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.600690"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.600690"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.604106"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.604106"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.606520"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.606520"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.608903"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.608903"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.611972"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.611972"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.614885"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.614885"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.617315"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.617315"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.619854"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.619854"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.622564"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.622564"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.625216"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.625216"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.627666"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.627666"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.630625"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.630625"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.632938"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.632938"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.635499"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.635499"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.637926"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.637926"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.640330"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.640330"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.642683"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.642683"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.645957"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.645957"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.648743"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.648743"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.651653"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.651653"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.654065"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.654065"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.656468"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.656468"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.659508"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.659508"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.662485"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.662485"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.665325"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.665325"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.667805"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.667805"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.670155"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.670155"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.672612"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.672612"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:51.675083"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:51.675083"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:53:51 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (11.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:53:51 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-30 22:53:51 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (15.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:53:51 -0400  (2.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.133091"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.133091"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.135908"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.135908"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.138369"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.138369"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.141816"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.141816"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.144641"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.144641"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.147347"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.147347"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.150638"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.150638"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.153425"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.153425"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.155841"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.155841"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.158327"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.158327"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.160774"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.160774"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.163522"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.163522"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.166018"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.166018"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.168529"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.168529"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.171027"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.171027"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.173395"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.173395"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.176170"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.176170"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.179348"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.179348"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.182199"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.182199"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.184768"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.184768"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.187477"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.187477"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.189942"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.189942"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.192632"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.192632"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.195058"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.195058"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.197712"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.197712"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.200206"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.200206"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.202727"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.202727"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.205222"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.205222"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.207518"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.207518"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.209916"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.209916"]]  (9.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:53.222278"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:53.222278"]]  (24.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:53:53 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (14.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:53:53 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-30 22:53:53 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.7ms) Rendered people/index.html.haml within layouts/application (24.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 28ms (Views: 25.4ms | ActiveRecord: 1.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:53:53 -0400  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.035963"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.035963"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.038642"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.038642"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.041064"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.041064"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.043507"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.043507"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.046027"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.046027"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.048890"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.048890"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.052350"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.052350"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.054743"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.054743"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.057187"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.057187"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.059661"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.059661"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.062622"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.062622"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.065377"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.065377"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.068175"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.068175"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.070708"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.070708"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.073301"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.073301"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.076647"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.076647"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.079149"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.079149"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.081677"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.081677"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.084317"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.084317"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.086811"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.086811"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.089928"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.089928"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.092439"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.092439"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.095493"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.095493"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.099228"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.099228"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.102707"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.102707"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.106050"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.106050"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.108677"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.108677"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.111510"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.111510"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.114018"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.114018"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.117407"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.117407"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:54.120088"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:54.120088"]]  (1.0ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 22:53:54 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (13.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:53:54 -0400 Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-07-30 22:53:54 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (11.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:53:54 -0400 Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 22:53:55 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.9ms) Rendered people/index.html.haml within layouts/application (10.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:53:55 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-07-30 22:53:55 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (10.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:53:55 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:53:56 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.3ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "people";  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:53:56 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:53:56 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-30 22:53:56 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:53:56 -0400  (1.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 22:53:56 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.908401"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.908401"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.911013"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.911013"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.913515"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.913515"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.916120"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.916120"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.918588"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.918588"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.921023"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.921023"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.924392"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.924392"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.928066"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.928066"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.931052"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.931052"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.933625"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.933625"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.936151"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.936151"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.938697"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.938697"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.941283"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.941283"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.983766"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.983766"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.986543"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.986543"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.989217"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.989217"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.991848"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.991848"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.994440"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.994440"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:56.997446"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:56.997446"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.000299"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.000299"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.006141"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.006141"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.009037"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.009037"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.012167"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.012167"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.016184"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.016184"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.018972"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_20@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.018972"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.021609"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.021609"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.024192"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.024192"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.027034"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.027034"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.029954"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.029954"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.033175"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.033175"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.035974"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.035974"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.040092"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.040092"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.044059"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.044059"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.047218"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.047218"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.051192"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.051192"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.054048"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.054048"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.057680"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.057680"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.061266"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.061266"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.064749"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.064749"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.067968"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.067968"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.071087"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.071087"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.075151"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.075151"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.078094"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_31@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.078094"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.081519"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.081519"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.084609"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.084609"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.087598"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.087598"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.091741"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.091741"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.094891"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.094891"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.098170"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.098170"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:57.101446"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:57.101446"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:53:57 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.1ms) Rendered people/index.html.haml within layouts/application (13.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:53:57 -0400  (2.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:59.282371"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_188@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:59.282371"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:59.285319"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_189@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:59.285319"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:59.288000"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_190@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:59.288000"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:59.291385"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_191@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:59.291385"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:59.294116"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:59.294116"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:53:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-30 22:53:59 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (5.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.4ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:59.330975"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:59.330975"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:53:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (4.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:53:59 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (19.6ms) Rendered people/edit.html.haml within layouts/application (21.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.1ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:53:59.376666"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:53:59.376666"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 22:53:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:53:59 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-30 22:54:00 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.0ms) commit transaction Redirected to http://127.0.0.1:61012/people Completed 302 Found in 5ms (ActiveRecord: 1.8ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 22:54:00 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:54:00 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:54:01 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.1ms) Rendered people/new.html.haml within layouts/application (9.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 22:54:01 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"02", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.7ms) Rendered people/_form.html.haml (7.4ms) Rendered people/new.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 16ms (Views: 9.2ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:54:01 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.8ms) Rendered people/new.html.haml within layouts/application (9.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:54:01.411197"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:54:01.411197"]]  (1.3ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:54:01 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.1ms) Rendered people/edit.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.2ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:54:01 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (9.0ms) Rendered people/new.html.haml within layouts/application (9.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:54:01 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 22:54:02 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"22", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:54:02.586024"], ["dob", "2012-07-30 22:54:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:54:02.586024"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:61012/people Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 22:54:02 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 22:54:02 -0400  (1.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:54:03.392828"], ["dob", "2012-07-31 02:54:03.391869"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:54:03.392828"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:54:03 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.3ms) Rendered people/edit.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 22:54:03 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"22", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.5ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 22:54:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 02:54:03.426759"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 22:54:03 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (3.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.4ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:54:03 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.7ms) Rendered people/new.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 22:54:03 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"02", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:54:03.473569"], ["dob", "2014-07-31 02:54:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 02:54:03.473569"]]  (1.2ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 22:54:03 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.3ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:54:03.496437"], ["dob", "1984-07-31 02:49:14.361203"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 02:54:03.496437"]]  (1.6ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:54:03 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.9ms) Rendered people/edit.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 22:54:03 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"02", "dob(5i)"=>"49", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.2ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 02:49:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 02:54:03.520821"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 22:54:03 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.1ms) Rendered people/edit.html.haml within layouts/application (7.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.1ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:54:03 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.6ms) Rendered people/new.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 22:54:03 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"02", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 02:54:03.569858"], ["dob", "2014-07-31 02:54:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 02:54:03.569858"]]  (1.2ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.5ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-30 22:54:03 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.6ms) Rendered people/new.html.haml within layouts/application (8.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 02:55:12.370919"], ["exp_date", "2016-07-30"], ["secret_code", "28c5083eb6fac994"], ["updated_at", "2014-07-31 02:55:12.370919"]]  (1.3ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 22:55:12 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.1ms) Rendered credit_card_infos/index.html.haml within layouts/application (18.0ms) Rendered application/_flash_messages.html.haml (12.0ms) Completed 200 OK in 56ms (Views: 55.1ms | ActiveRecord: 0.3ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 03:02:04.148695"], ["exp_date", "2016-07-30"], ["secret_code", "d2a2e115d8065515"], ["updated_at", "2014-07-31 03:02:04.148695"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:02:04 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.1ms) Rendered credit_card_infos/index.html.haml within layouts/application (19.6ms) Rendered application/_flash_messages.html.haml (9.4ms) Completed 200 OK in 49ms (Views: 48.3ms | ActiveRecord: 0.4ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 03:03:35.334610"], ["exp_date", "2016-07-30"], ["secret_code", "a098f39717ec2680"], ["updated_at", "2014-07-31 03:03:35.334610"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:03:35 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (8.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (18.0ms) Rendered application/_flash_messages.html.haml (14.0ms) Completed 200 OK in 52ms (Views: 51.1ms | ActiveRecord: 0.4ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 03:06:05.245282"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.245282"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 03:06:05.250769"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.250769"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 03:06:05.253577"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.253577"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 03:06:05.256056"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.256056"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 03:06:05.259529"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.259529"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 03:06:05.262252"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.262252"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 03:06:05.264821"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.264821"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 03:06:05.267162"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.267162"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 03:06:05.269707"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.269707"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 03:06:05.271997"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.271997"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 03:06:05.274442"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.274442"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 03:06:05.276780"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.276780"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 03:06:05.279621"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.279621"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 03:06:05.282806"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.282806"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 03:06:05.285530"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.285530"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 03:06:05.287940"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.287940"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 03:06:05.290272"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.290272"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 03:06:05.292534"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.292534"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 03:06:05.294946"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.294946"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 03:06:05.297291"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.297291"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 03:06:05.299778"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.299778"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 03:06:05.302835"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.302835"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 03:06:05.306018"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.306018"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 03:06:05.309777"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.309777"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 03:06:05.312554"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.312554"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 03:06:05.315467"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.315467"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 03:06:05.318281"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.318281"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 03:06:05.320959"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.320959"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 03:06:05.323528"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.323528"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 03:06:05.326022"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.326022"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 03:06:05.328370"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.328370"]]  (1.0ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:06:05 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (10.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (24.8ms) Rendered application/_flash_messages.html.haml (8.8ms) Completed 200 OK in 53ms (Views: 51.8ms | ActiveRecord: 0.6ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 23:06:05 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.4ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-07-30 23:06:05 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.4ms)  (2.1ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 03:06:05.439428"], ["exp_date", "2016-07-30"], ["secret_code", "0b4dceb9d9b090cd"], ["updated_at", "2014-07-31 03:06:05.439428"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:06:05 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered credit_card_infos/index.html.haml within layouts/application (2.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.3ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:07:30 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (25.6ms) Rendered people/new.html.haml within layouts/application (30.0ms) Rendered application/_flash_messages.html.haml (10.2ms) Completed 200 OK in 70ms (Views: 66.9ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:07:30 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"07", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (1.5ms) Rendered people/_form.html.haml (5.8ms) Rendered people/new.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 13ms (Views: 7.4ms | ActiveRecord: 0.1ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:07:30 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.8ms) Rendered people/new.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:07:30 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"07", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:30.464055"], ["dob", "2014-07-31 03:07:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 03:07:30.464055"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 7ms (ActiveRecord: 1.3ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:07:30 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.2ms) Rendered people/new.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:07:30 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.4ms) Rendered people/new.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:07:30 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"07", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:30.578726"], ["dob", "2014-07-31 03:07:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 03:07:30.578726"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.2ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:30 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (5.0ms) Rendered people/index.html.haml within layouts/application (18.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:30.614976"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:30.614976"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:07:30 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (5.7ms) Rendered people/edit.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:07:30 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"07", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 03:07:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 03:07:30.642615"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 6ms (ActiveRecord: 1.5ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:07:30 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.1ms) Rendered people/edit.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.1ms)  (3.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:30.683119"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:30.683119"]]  (1.1ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:07:30 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (12.2ms) Rendered people/edit.html.haml within layouts/application (12.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.6ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.6ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:07:30 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.1ms) Rendered people/new.html.haml within layouts/application (7.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.0ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:30.744459"], ["dob", "2012-07-31 03:07:30.743452"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:30.744459"]]  (1.6ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:07:30 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.8ms) Rendered people/edit.html.haml within layouts/application (8.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 10.4ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:07:30 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"07", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 23:07:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 03:07:30.781400"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:30 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.3ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:07:33 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (14.3ms) Rendered people/new.html.haml within layouts/application (14.9ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 23:07:33 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:33 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 23:07:34 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"07", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.4ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:34.711112"], ["dob", "2012-07-30 23:07:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:34.711112"]]  (1.0ms) commit transaction Redirected to http://127.0.0.1:62235/people Completed 302 Found in 7ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:34 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.0ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:34 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:35.700707"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:35.700707"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (7.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:35 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-30 23:07:36 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.4ms) commit transaction Redirected to http://127.0.0.1:62235/people Completed 302 Found in 4ms (ActiveRecord: 1.9ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:36 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.478490"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.478490"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:07:37 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.2ms) Rendered people/edit.html.haml within layouts/application (8.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.511053"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.511053"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.513806"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.513806"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.516768"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.516768"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.520245"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.520245"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.522961"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.522961"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.525431"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.525431"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.527792"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.527792"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.530076"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.530076"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.532636"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.532636"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.535053"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.535053"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.537371"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.537371"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.539633"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.539633"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.542364"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.542364"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.544626"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.544626"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.548643"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.548643"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.551807"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.551807"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.554353"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.554353"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.556821"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.556821"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.559266"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.559266"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.561877"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.561877"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.564690"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.564690"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.567080"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.567080"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.570117"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.570117"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.572476"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.572476"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.575948"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.575948"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.578405"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.578405"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.580971"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.580971"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.584319"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.584319"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.588130"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.588130"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.590726"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.590726"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:37.593708"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:37.593708"]]  (1.0ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 23:07:37 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.4ms) Rendered people/index.html.haml within layouts/application (13.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:37 -0400 Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 23:07:38 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.9ms) Rendered people/index.html.haml within layouts/application (11.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:38 -0400 Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 23:07:38 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (13.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:38 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 23:07:39 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (9.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:39 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.147987"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.147987"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.151023"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.151023"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.154525"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.154525"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.157258"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.157258"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.159713"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.159713"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.162504"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.162504"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.165450"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.165450"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.168352"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.168352"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.171850"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.171850"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.175134"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.175134"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.179082"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.179082"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.182262"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.182262"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.185354"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.185354"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.188190"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.188190"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.191442"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.191442"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.194778"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.194778"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.197830"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.197830"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.201335"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.201335"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.203884"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.203884"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.206836"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.206836"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.209382"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.209382"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.211723"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.211723"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.214316"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.214316"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.217797"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.217797"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.220455"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.220455"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.223249"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.223249"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.225745"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.225745"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.228189"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.228189"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.230971"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.230971"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.234194"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.234194"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:40.236874"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:40.236874"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:40 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (11.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.0ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:40 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-30 23:07:40 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (16.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 21ms (Views: 18.2ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:40 -0400  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.273521"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.273521"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.276715"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.276715"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.279147"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.279147"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.281667"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.281667"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.284080"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.284080"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.286525"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.286525"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.288942"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.288942"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.291303"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.291303"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.293705"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.293705"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.296108"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.296108"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.298782"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.298782"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.302276"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.302276"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.305095"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.305095"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.307621"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.307621"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.310007"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.310007"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.312532"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.312532"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.316155"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.316155"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.320045"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.320045"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.322885"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.322885"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.325450"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.325450"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.328498"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.328498"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.331143"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.331143"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.334342"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.334342"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.336946"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.336946"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.339560"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.339560"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.342030"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.342030"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.344526"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.344526"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.347105"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.347105"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.349719"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.349719"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.352253"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.352253"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:41.355415"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:41.355415"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (16.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:41 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-30 23:07:41 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (15.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:41 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.086373"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.086373"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.089177"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.089177"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.091537"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.091537"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.093947"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.093947"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.096355"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.096355"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.099049"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.099049"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.101825"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.101825"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.104240"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.104240"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.107736"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.107736"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.110254"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.110254"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.112631"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.112631"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.115348"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.115348"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.118084"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.118084"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.120414"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.120414"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.124001"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.124001"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.126547"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.126547"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.129010"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.129010"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.132328"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.132328"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.135663"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.135663"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.138051"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.138051"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.140471"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.140471"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.143490"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.143490"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.146034"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.146034"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.148542"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.148542"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.151329"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.151329"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.155115"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.155115"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.158620"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.158620"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.161067"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.161067"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.163580"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.163580"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.166874"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.166874"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.170078"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.170078"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (12.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.6ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.201807"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.201807"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.204708"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.204708"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.207276"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.207276"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.209791"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.209791"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.212233"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.212233"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.215585"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.215585"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.218473"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.218473"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.221355"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.221355"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.224183"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.224183"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.226682"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.226682"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.229569"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.229569"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.232510"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.232510"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.235484"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.235484"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.237956"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.237956"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.240629"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.240629"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.243289"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.243289"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.245779"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.245779"]]  (0.9ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.249723"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.249723"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.253092"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.253092"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.255892"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.255892"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.258300"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.258300"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.260824"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.260824"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.263341"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.263341"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.266183"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.266183"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.269888"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.269888"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.272468"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.272468"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.275012"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.275012"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.278562"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.278562"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.281175"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.281175"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.283826"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.283826"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.287553"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.287553"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (12.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:42 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-30 23:07:42 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (13.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 18ms (Views: 15.7ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:42 -0400  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:42.869698"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:42.869698"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (5.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:42 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.209323"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.209323"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.212441"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.212441"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.215922"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.215922"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.218812"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.218812"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.221227"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.221227"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.223692"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.223692"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.226270"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.226270"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.228934"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.228934"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.231477"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.231477"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.234902"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.234902"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.238818"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.238818"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.242328"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.242328"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.245343"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.245343"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.248537"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.248537"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.251512"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.251512"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.254005"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.254005"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.256436"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.256436"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.258969"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.258969"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.261538"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.261538"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.264067"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.264067"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.266833"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.266833"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.269286"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.269286"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.271631"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.271631"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.274050"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.274050"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.276419"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.276419"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.279084"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.279084"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.281809"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.281809"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.284328"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.284328"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.287195"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_190@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.287195"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.289625"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_191@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.289625"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.292835"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_192@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.292835"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (11.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 23:07:43 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (11.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.0ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-30 23:07:43 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (20.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 23ms (Views: 21.4ms | ActiveRecord: 0.6ms)  (1.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.2ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (4.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:43 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-30 23:07:43 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:43 -0400  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.864475"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_193@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.864475"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.867732"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_194@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.867732"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.870461"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_195@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.870461"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.873011"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoe_196@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.873011"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.876131"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.876131"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-30 23:07:43 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (5.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.912792"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.912792"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.916498"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.916498"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.919505"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.919505"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.922190"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.922190"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.924683"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.924683"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.927572"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.927572"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.931374"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.931374"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.934189"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.934189"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.936819"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.936819"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.939738"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.939738"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.942633"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.942633"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.945520"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.945520"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.949203"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.949203"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.952144"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.952144"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.954873"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.954873"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.957745"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.957745"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.961860"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.961860"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.965284"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.965284"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.968325"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.968325"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.971064"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.971064"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.974163"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.974163"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.976929"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.976929"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.979646"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.979646"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.982228"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.982228"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.985505"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.985505"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.988168"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.988168"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.990633"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.990633"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.993391"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.993391"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.996062"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.996062"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:43.999340"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:43.999340"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.002277"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.002277"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.005212"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.005212"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.008188"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.008188"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.011506"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.011506"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.014447"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.014447"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.017457"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.017457"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.020369"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.020369"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.023074"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.023074"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.025948"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.025948"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.029015"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.029015"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.031987"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.031987"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.035503"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.035503"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.038874"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_66@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.038874"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.042680"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.042680"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.046661"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.046661"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.050414"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.050414"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.053785"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.053785"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.057288"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.057288"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.060254"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.060254"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:07:44.063165"], ["dob", "1984-07-31 03:07:27.461945"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:07:44.063165"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:07:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (12.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:44 -0400 Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-30 23:07:44 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (13.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 1.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:07:44 -0400  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 03:07:49.971861"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:49.971861"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 03:07:49.975465"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:49.975465"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 03:07:49.978939"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:49.978939"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 03:07:49.982791"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:49.982791"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 03:07:49.986892"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:49.986892"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 03:07:49.990691"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:49.990691"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 03:07:49.993712"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:49.993712"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 03:07:49.996842"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:49.996842"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 03:07:50.000587"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.000587"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 03:07:50.003579"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.003579"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 03:07:50.006401"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.006401"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 03:07:50.009144"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.009144"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 03:07:50.011940"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.011940"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 03:07:50.014783"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.014783"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 03:07:50.018322"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.018322"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 03:07:50.021242"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.021242"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 03:07:50.025113"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.025113"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 03:07:50.028341"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.028341"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 03:07:50.030968"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.030968"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 03:07:50.033463"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.033463"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 03:07:50.035906"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.035906"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 03:07:50.038231"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.038231"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 03:07:50.040928"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.040928"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 03:07:50.044787"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.044787"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 03:07:50.048058"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.048058"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 03:07:50.051048"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.051048"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 03:07:50.053888"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.053888"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 03:07:50.056788"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.056788"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 03:07:50.059817"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.059817"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 03:07:50.062444"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.062444"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 03:07:50.065220"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.065220"]]  (1.8ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:07:50 -0400 Processing by CreditCardInfosController#index as HTML Completed 500 Internal Server Error in 1ms  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 03:07:50.082672"], ["exp_date", "2016-07-30"], ["secret_code", "24385edca3c455b4"], ["updated_at", "2014-07-31 03:07:50.082672"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:07:50 -0400 Processing by CreditCardInfosController#index as HTML Completed 500 Internal Server Error in 0ms ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.7ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (2.3ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 03:12:23.845112"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.845112"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 03:12:23.851021"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.851021"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 03:12:23.853776"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.853776"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 03:12:23.856379"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.856379"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 03:12:23.858909"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.858909"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 03:12:23.861827"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.861827"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 03:12:23.864216"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.864216"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 03:12:23.866997"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.866997"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 03:12:23.869787"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.869787"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 03:12:23.872428"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.872428"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 03:12:23.875732"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.875732"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 03:12:23.878436"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.878436"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 03:12:23.881078"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.881078"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 03:12:23.883522"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.883522"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 03:12:23.886013"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.886013"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 03:12:23.888434"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.888434"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 03:12:23.891014"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.891014"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 03:12:23.893486"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.893486"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 03:12:23.895954"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.895954"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 03:12:23.898471"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.898471"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 03:12:23.901661"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.901661"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 03:12:23.904740"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.904740"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 03:12:23.908985"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.908985"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 03:12:23.912833"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.912833"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 03:12:23.916175"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.916175"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 03:12:23.919873"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.919873"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 03:12:23.923776"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.923776"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 03:12:23.927542"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.927542"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 03:12:23.931592"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.931592"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 03:12:23.934406"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.934406"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 03:12:23.936957"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:23.936957"]]  (1.4ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:12:23 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (10.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (24.5ms) Rendered application/_flash_messages.html.haml (9.3ms) Completed 200 OK in 61ms (Views: 59.2ms | ActiveRecord: 0.6ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 23:12:24 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.4ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-07-30 23:12:24 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.4ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 03:12:24.052552"], ["exp_date", "2016-07-30"], ["secret_code", "f056ef481804e4e7"], ["updated_at", "2014-07-31 03:12:24.052552"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:12:24 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered credit_card_infos/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.4ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:12:39 -0400  (1.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:12:39 -0400 Processing by PeopleController#new as HTML Completed 500 Internal Server Error in 2ms  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:12:39 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (30.0ms) Rendered people/new.html.haml within layouts/application (36.5ms) Rendered application/_flash_messages.html.haml (10.9ms) Completed 200 OK in 78ms (Views: 76.0ms | ActiveRecord: 0.4ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:12:39 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"12", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:39.335115"], ["dob", "2014-07-31 03:12:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 03:12:39.335115"]]  (1.2ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 7ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:12:39 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:39.350247"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:39.350247"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:12:39 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.3ms) Rendered people/edit.html.haml within layouts/application (7.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.4ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:12:39 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"12", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 03:12:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 03:12:39.374759"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.8ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:12:39 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.0ms) Rendered people/edit.html.haml within layouts/application (6.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.1ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:39.403731"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:39.403731"]]  (1.7ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:12:39 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (12.9ms) Rendered people/edit.html.haml within layouts/application (13.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 88ms (Views: 87.4ms | ActiveRecord: 0.1ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:12:39 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.9ms) Rendered people/new.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:39.524312"], ["dob", "2012-07-31 03:12:39.523376"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:39.524312"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:12:39 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.8ms) Rendered people/edit.html.haml within layouts/application (9.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:12:39 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"12", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 23:12:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 03:12:39.560861"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.8ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:12:39 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 0ms  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:12:42 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (16.4ms) Rendered people/new.html.haml within layouts/application (17.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 23:12:42 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:12:42 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 23:12:43 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"12", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.5ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.413300"], ["dob", "2012-07-30 23:12:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.413300"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:62838/people Completed 302 Found in 6ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:12:43 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:12:43 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 0ms  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.541416"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.541416"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:12:43 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 0ms  (0.2ms) SELECT COUNT(*) FROM "people"  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.638000"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.638000"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:12:43 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.651550"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.651550"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.654210"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.654210"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.656741"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.656741"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.659499"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.659499"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.663039"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.663039"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.666053"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.666053"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.668557"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.668557"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.671073"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.671073"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.673430"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.673430"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.676301"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.676301"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.679637"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.679637"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.682414"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.682414"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.684878"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.684878"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.687227"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.687227"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.689600"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.689600"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.692332"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.692332"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.694771"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.694771"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.697382"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.697382"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.699831"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.699831"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.702177"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.702177"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.704404"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.704404"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.707061"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.707061"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.710461"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.710461"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.713188"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.713188"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.715919"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.715919"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.718327"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.718327"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.721016"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.721016"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.723410"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.723410"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.725785"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.725785"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.728460"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.728460"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.731177"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.731177"]]  (1.2ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 23:12:43 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Completed 500 Internal Server Error in 1ms  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.845089"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.845089"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.848051"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.848051"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.850591"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.850591"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.852928"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.852928"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.855306"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.855306"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.857691"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.857691"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.860191"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.860191"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.862544"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.862544"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.864851"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.864851"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.867244"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.867244"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.869600"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.869600"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.872082"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.872082"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.874470"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.874470"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.878006"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.878006"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.881277"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.881277"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.883700"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.883700"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.886054"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.886054"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.888302"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.888302"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.891751"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.891751"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.894397"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.894397"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.897000"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.897000"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.899472"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.899472"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.902010"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.902010"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.904403"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.904403"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.906787"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.906787"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.910321"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.910321"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.914382"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.914382"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.916971"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.916971"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.919387"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.919387"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.922789"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.922789"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:43.925453"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:43.925453"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:12:43 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.016118"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.016118"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.018607"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.018607"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.021039"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.021039"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.023384"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.023384"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.025793"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.025793"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.028543"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.028543"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.031118"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.031118"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.033744"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.033744"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.036054"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.036054"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.038400"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.038400"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.040796"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.040796"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.043437"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.043437"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.046261"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.046261"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.048729"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.048729"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.051135"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.051135"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.053508"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.053508"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.055812"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.055812"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.059169"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.059169"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.062643"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.062643"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.065660"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.065660"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.068048"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.068048"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.070455"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.070455"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.073002"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.073002"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.076201"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.076201"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.079060"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.079060"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.081577"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.081577"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.084028"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.084028"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.086420"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.086420"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.088712"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.088712"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.091111"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.091111"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:44.093647"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:44.093647"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:12:44 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.206608"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.206608"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.209942"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.209942"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.212717"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.212717"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.217289"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.217289"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.219817"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.219817"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.222101"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.222101"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.224438"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.224438"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.226883"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.226883"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.229435"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.229435"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.231920"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.231920"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.234289"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.234289"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.236988"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.236988"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.239431"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.239431"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.242212"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.242212"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.245743"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.245743"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.248485"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.248485"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.250903"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.250903"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.255129"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.255129"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.258538"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.258538"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.260890"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.260890"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.264348"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.264348"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.266916"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.266916"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.269472"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.269472"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.271757"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.271757"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.274043"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.274043"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.277227"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.277227"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.279779"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.279779"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.283136"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.283136"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.285627"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.285627"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.288404"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.288404"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.291204"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.291204"]]  (1.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:12:54 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 0ms  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.302152"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.302152"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.305618"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.305618"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.308077"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.308077"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.311368"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.311368"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.313950"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.313950"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.316335"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.316335"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.319660"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.319660"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.322322"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.322322"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.324709"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.324709"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.327969"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.327969"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.330869"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.330869"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.333669"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.333669"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.336142"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.336142"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.338648"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.338648"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.342030"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.342030"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.344807"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.344807"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.347355"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.347355"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.349764"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.349764"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.352230"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.352230"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.355032"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.355032"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.357575"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.357575"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.360803"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.360803"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.363527"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.363527"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.365841"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.365841"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.368104"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.368104"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.370446"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.370446"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.373616"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.373616"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.376146"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.376146"]]  (23.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.401380"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.401380"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.404120"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.404120"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:12:54.406993"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:12:54.406993"]]  (1.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:12:54 -0400  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:04.522903"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:04.522903"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:13:04 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.646094"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.646094"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.648599"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.648599"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.651333"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.651333"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.653887"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.653887"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.656472"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.656472"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.658870"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.658870"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.663384"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.663384"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.666212"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.666212"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.668748"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.668748"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.671167"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.671167"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.673507"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.673507"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.676119"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.676119"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.678602"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.678602"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.682573"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.682573"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.685898"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.685898"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.689516"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.689516"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.692821"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.692821"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.695308"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.695308"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.697723"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.697723"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.700110"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.700110"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.702632"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.702632"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.706300"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.706300"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.708880"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.708880"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.711551"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.711551"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.714918"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.714918"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.717963"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.717963"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.720309"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.720309"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (6.9ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.722634"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.722634"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.732239"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_190@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.732239"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.736437"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_191@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.736437"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:14.739154"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_192@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:14.739154"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:13:14 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:13:14 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 0ms  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:13:14 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:13:14 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 0ms  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:13:14 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.884491"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_193@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.884491"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.888213"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_194@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.888213"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.891023"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_195@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.891023"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.893446"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoe_196@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.893446"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.896093"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.896093"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:13:24 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 0ms  (22.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.927789"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.927789"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.930622"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.930622"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.933490"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.933490"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.936084"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.936084"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.939268"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.939268"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.942464"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.942464"]]  (1.1ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.945863"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.945863"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.949471"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.949471"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.952632"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.952632"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.956621"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.956621"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.960900"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.960900"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.964283"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.964283"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.967047"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.967047"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.969596"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.969596"]]  (2.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.973454"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.973454"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.976454"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.976454"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.979622"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.979622"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.983660"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.983660"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.987939"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.987939"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.990935"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.990935"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.993983"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.993983"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:24.997704"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:24.997704"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.000446"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.000446"]]  (1.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.003959"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.003959"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.007029"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.007029"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.010344"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.010344"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.013099"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.013099"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.015765"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.015765"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.020052"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.020052"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.023685"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.023685"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.027366"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.027366"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.030358"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.030358"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.035430"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.035430"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.039224"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.039224"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.044442"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.044442"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.049285"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.049285"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.052140"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.052140"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.055149"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.055149"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.058073"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.058073"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.061279"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.061279"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.064183"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.064183"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.067122"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.067122"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.071594"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.071594"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.074500"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.074500"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.077918"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.077918"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.081147"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.081147"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.085805"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.085805"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.088718"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.088718"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.091714"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.091714"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:13:25.094811"], ["dob", "1984-07-31 03:12:36.308878"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:13:25.094811"]]  (4.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:13:25 -0400  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 03:13:39.759459"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.759459"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 03:13:39.763512"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.763512"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 03:13:39.766033"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.766033"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 03:13:39.768589"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.768589"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 03:13:39.771064"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.771064"]]  (1.1ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 03:13:39.773829"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.773829"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 03:13:39.776779"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.776779"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 03:13:39.780040"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.780040"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 03:13:39.783414"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.783414"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 03:13:39.786820"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.786820"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 03:13:39.789534"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.789534"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 03:13:39.792373"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.792373"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 03:13:39.795345"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.795345"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 03:13:39.798241"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.798241"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 03:13:39.800812"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.800812"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 03:13:39.803325"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.803325"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 03:13:39.805812"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.805812"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 03:13:39.808411"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.808411"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 03:13:39.811870"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.811870"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 03:13:39.814500"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.814500"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 03:13:39.817474"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.817474"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 03:13:39.820807"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.820807"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 03:13:39.823648"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.823648"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 03:13:39.826506"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.826506"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 03:13:39.829806"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.829806"]]  (1.2ms) commit transaction  (0.2ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 03:13:39.832705"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.832705"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 03:13:39.835162"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.835162"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 03:13:39.839039"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.839039"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 03:13:39.842143"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.842143"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 03:13:39.845683"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.845683"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 03:13:39.848549"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.848549"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:13:39 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (7.9ms) Rendered credit_card_infos/index.html.haml within layouts/application (16.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 0.6ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 23:13:39 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.4ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (4.1ms) Rendered credit_card_infos/index.html.haml within layouts/application (8.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.7ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-07-30 23:13:39 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.4ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 03:13:39.938640"], ["exp_date", "2016-07-30"], ["secret_code", "328e0e58fe193686"], ["updated_at", "2014-07-31 03:13:39.938640"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:13:39 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (2.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.3ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:17:25 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (25.1ms) Rendered people/new.html.haml within layouts/application (29.7ms) Rendered application/_flash_messages.html.haml (9.7ms) Completed 200 OK in 71ms (Views: 67.9ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:17:25 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"17", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.5ms) Rendered people/_form.html.haml (8.0ms) Rendered people/new.html.haml within layouts/application (8.3ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 16ms (Views: 9.8ms | ActiveRecord: 0.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:17:25 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.4ms) Rendered people/new.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:17:25 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"17", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:25.916320"], ["dob", "2014-07-31 03:17:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 03:17:25.916320"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:25 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.4ms) Rendered people/index.html.haml within layouts/application (18.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.5ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:17:26 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.8ms) Rendered people/new.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:17:26 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"17", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:26.040794"], ["dob", "2014-07-31 03:17:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 03:17:26.040794"]]  (1.2ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 6ms (ActiveRecord: 1.7ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:17:26 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.1ms) Rendered people/new.html.haml within layouts/application (7.4ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:26.071193"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:26.071193"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:17:26 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (5.9ms) Rendered people/edit.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:17:26 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"17", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 03:17:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 03:17:26.095313"]]  (1.2ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.7ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:17:26 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (12.3ms) Rendered people/edit.html.haml within layouts/application (12.7ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:26.140221"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:26.140221"]]  (1.3ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:17:26 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (11.7ms) Rendered people/edit.html.haml within layouts/application (12.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.2ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:17:26 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.2ms) Rendered people/new.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:26.197502"], ["dob", "2012-07-31 03:17:26.196609"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:26.197502"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:17:26 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.1ms) Rendered people/edit.html.haml within layouts/application (8.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:17:26 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"17", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.2ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 23:17:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 03:17:26.230701"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:26 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.3ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:17:29 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (14.9ms) Rendered people/new.html.haml within layouts/application (15.5ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 23:17:29 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:29 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 23:17:30 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"17", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:30.093529"], ["dob", "2012-07-30 23:17:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:30.093529"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:62993/people Completed 302 Found in 6ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:30 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:30 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:31 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.096522"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.096522"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.099279"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.099279"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.101581"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.101581"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.103932"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.103932"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.106475"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.106475"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.109133"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.109133"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.112058"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.112058"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.114696"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.114696"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.117753"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.117753"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.120275"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.120275"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.123432"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.123432"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.127260"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.127260"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.129832"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.129832"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.132425"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.132425"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.134720"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.134720"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.138250"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.138250"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.141129"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.141129"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.143645"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.143645"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.146040"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.146040"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.148433"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.148433"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.150826"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.150826"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.153351"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.153351"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.156098"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.156098"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.159383"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.159383"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.162355"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.162355"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.164908"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.164908"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.168142"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.168142"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.170626"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.170626"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.173151"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.173151"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.175681"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.175681"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:31.178280"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:31.178280"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 23:17:31 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (11.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:31 -0400 Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 23:17:31 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (10.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.4ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:31 -0400 Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 23:17:32 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (10.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 11.9ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:32 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 23:17:32 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (10.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:32 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.614097"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.614097"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.616965"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.616965"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.619600"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.619600"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.622838"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.622838"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.626662"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.626662"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.630014"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.630014"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.632705"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.632705"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.635154"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.635154"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.638678"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.638678"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.641398"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.641398"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.644348"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.644348"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.647682"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.647682"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.650452"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.650452"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.653727"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.653727"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.656686"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.656686"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.659564"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.659564"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.662059"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.662059"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.665005"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.665005"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.668008"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.668008"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.671550"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.671550"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.674934"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.674934"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.678424"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.678424"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.681027"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.681027"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.683708"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.683708"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.687388"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.687388"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.691372"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.691372"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.694468"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.694468"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.697185"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.697185"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.699888"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.699888"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.702531"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.702531"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.705402"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.705402"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:33 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (10.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.4ms | ActiveRecord: 0.7ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.735011"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.735011"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.737860"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.737860"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.740742"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.740742"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.743653"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.743653"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.747161"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.747161"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.750006"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.750006"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.752642"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.752642"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.754974"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.754974"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.757338"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.757338"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.759866"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.759866"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.762956"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.762956"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.766552"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.766552"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.768905"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.768905"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.771256"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.771256"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.773579"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.773579"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.776151"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.776151"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.778934"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.778934"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.782171"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.782171"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.785502"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.785502"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.788653"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.788653"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.791928"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.791928"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.794852"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.794852"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.797686"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.797686"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.800350"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.800350"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.802849"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.802849"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.805245"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.805245"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.807898"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.807898"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.810545"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.810545"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.813776"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.813776"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.816233"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.816233"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:33.818736"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:33.818736"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:33 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (13.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 14.2ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:33 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-30 23:17:34 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.1ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (18.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 22ms (Views: 19.2ms | ActiveRecord: 1.1ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:34 -0400  (3.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.751789"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.751789"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.754363"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.754363"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.756569"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.756569"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.758982"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.758982"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.761369"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.761369"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.763804"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.763804"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.766422"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.766422"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.768792"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.768792"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.772354"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.772354"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.775206"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.775206"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.777732"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.777732"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.780264"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.780264"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.782617"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.782617"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.784976"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.784976"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.787364"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.787364"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.790586"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.790586"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.793696"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.793696"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.796264"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.796264"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.798654"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.798654"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.801392"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.801392"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.803853"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.803853"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.806925"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.806925"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.809393"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.809393"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.813035"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.813035"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.816958"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.816958"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.819680"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.819680"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.822256"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.822256"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.825198"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.825198"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.829232"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.829232"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.832311"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.832311"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:34.834992"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:34.834992"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:34 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.2ms) Rendered people/index.html.haml within layouts/application (14.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 15.2ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:34 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-30 23:17:35 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (12.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:35 -0400  (1.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.595084"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.595084"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.598853"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.598853"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.601340"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.601340"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.603984"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.603984"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.606380"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.606380"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.609053"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.609053"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.611584"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.611584"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.614653"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.614653"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.616979"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.616979"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.619282"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.619282"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.621759"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.621759"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.624995"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.624995"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.628189"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.628189"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.631264"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.631264"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.633752"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.633752"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.636313"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.636313"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.639795"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.639795"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.643298"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.643298"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.645994"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.645994"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.648529"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.648529"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.651024"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.651024"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.653637"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.653637"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.656213"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.656213"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.659179"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.659179"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.662568"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.662568"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.665230"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.665230"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.667903"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.667903"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.670292"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.670292"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.672820"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.672820"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.675625"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.675625"]]  (1.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:35.679310"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:35.679310"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.1ms) Rendered people/index.html.haml within layouts/application (18.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:35 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-30 23:17:35 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (9.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:35 -0400  (2.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.153876"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.153876"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.156742"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.156742"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.159870"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.159870"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.162504"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.162504"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.165869"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.165869"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.168360"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.168360"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.171710"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.171710"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.174926"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.174926"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.177924"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.177924"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.181117"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.181117"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.183753"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.183753"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.186457"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.186457"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.190817"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.190817"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.194395"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.194395"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.197409"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.197409"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.200054"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.200054"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.202705"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.202705"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.205112"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.205112"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.207908"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.207908"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.210540"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.210540"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.213069"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.213069"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.216440"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.216440"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.218937"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.218937"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.221344"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.221344"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.223954"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.223954"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.227529"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.227529"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.232910"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.232910"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.237151"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.237151"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.241255"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.241255"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.244384"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.244384"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.248590"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.248590"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (16.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.8ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 23:17:36 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (13.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-30 23:17:36 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (13.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.5ms)  (3.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.346585"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_190@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.346585"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:36 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.8ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:36.767298"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_191@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:36.767298"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (5.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:36 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-30 23:17:37 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.5ms) commit transaction Redirected to http://127.0.0.1:62993/people Completed 302 Found in 5ms (ActiveRecord: 2.0ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.9ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (5.5ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:37 -0400  (0.3ms) SELECT COUNT(*) FROM "people"  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:38.745465"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_192@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:38.745465"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:38 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:17:38 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.6ms) Rendered people/edit.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.1ms)  (1.9ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:38 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:38 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:38 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:38 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-30 23:17:39 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:39 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.232394"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_193@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.232394"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.235170"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_194@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.235170"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.238138"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_195@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.238138"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.241681"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoe_196@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.241681"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.244540"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.244540"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (5.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-30 23:17:39 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.279637"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.279637"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.282452"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.282452"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.285062"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.285062"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.288526"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.288526"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.291937"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.291937"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.294579"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.294579"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.297146"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.297146"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.299632"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.299632"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.302259"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.302259"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.304900"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.304900"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.308899"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.308899"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.312415"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.312415"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.315058"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.315058"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.317590"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.317590"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.321036"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.321036"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.324539"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.324539"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.327771"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.327771"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.330529"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.330529"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.333543"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.333543"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.336550"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.336550"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.339220"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.339220"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.341994"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.341994"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.344757"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.344757"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.347409"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.347409"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.350113"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.350113"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.353218"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.353218"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.355968"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.355968"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.359429"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.359429"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.362125"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.362125"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.364974"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.364974"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.367872"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.367872"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.371060"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.371060"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.374481"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.374481"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.377766"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.377766"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.380976"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.380976"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.383823"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.383823"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.386787"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.386787"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.389865"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.389865"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.393110"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.393110"]]  (2.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.396870"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.396870"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.399749"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.399749"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.402753"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.402753"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.406670"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.406670"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.410069"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.410069"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.412994"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.412994"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.416344"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.416344"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.419407"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.419407"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.423064"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.423064"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.426053"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.426053"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:17:39.428966"], ["dob", "1984-07-31 03:17:22.636237"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:17:39.428966"]]  (1.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:17:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (12.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:39 -0400 Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-30 23:17:39 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (5.0ms) Rendered people/index.html.haml within layouts/application (15.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 1.1ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:17:39 -0400  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 03:17:45.536393"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.536393"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 03:17:45.540259"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.540259"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 03:17:45.543496"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.543496"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 03:17:45.546435"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.546435"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 03:17:45.549597"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.549597"]]  (1.1ms) commit transaction  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 03:17:45.553029"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.553029"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 03:17:45.556691"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.556691"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 03:17:45.559937"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.559937"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 03:17:45.562775"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.562775"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 03:17:45.566438"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.566438"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 03:17:45.569153"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.569153"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 03:17:45.571888"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.571888"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 03:17:45.575367"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.575367"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 03:17:45.578572"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.578572"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 03:17:45.581542"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.581542"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 03:17:45.584777"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.584777"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 03:17:45.587729"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.587729"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 03:17:45.590804"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.590804"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 03:17:45.593965"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.593965"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 03:17:45.596830"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.596830"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 03:17:45.599486"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.599486"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 03:17:45.602034"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.602034"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 03:17:45.605421"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.605421"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 03:17:45.609166"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.609166"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 03:17:45.612268"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.612268"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 03:17:45.615897"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.615897"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 03:17:45.619999"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.619999"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 03:17:45.623568"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.623568"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 03:17:45.626678"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.626678"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 03:17:45.629466"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.629466"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 03:17:45.632098"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.632098"]]  (1.8ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:17:45 -0400 Processing by CreditCardInfosController#index as HTML Completed 500 Internal Server Error in 1ms  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 03:17:45.652716"], ["exp_date", "2016-07-30"], ["secret_code", "43635391f3de8c2a"], ["updated_at", "2014-07-31 03:17:45.652716"]]  (1.3ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:17:45 -0400 Processing by CreditCardInfosController#index as HTML Completed 500 Internal Server Error in 1ms ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:24:08 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (31.1ms) Rendered people/new.html.haml within layouts/application (35.7ms) Rendered application/_flash_messages.html.haml (10.4ms) Completed 200 OK in 71ms (Views: 67.5ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:24:08 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"24", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.5ms) Rendered people/_form.html.haml (5.9ms) Rendered people/new.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 14ms (Views: 7.5ms | ActiveRecord: 0.1ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:24:09 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.4ms) Rendered people/new.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:24:09 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"24", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:09.051677"], ["dob", "2014-07-31 03:24:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 03:24:09.051677"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 7ms (ActiveRecord: 1.5ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:24:09 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.8ms) Rendered people/new.html.haml within layouts/application (9.1ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms)  (1.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:24:09 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.4ms) Rendered people/new.html.haml within layouts/application (7.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:24:09 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"24", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:09.105220"], ["dob", "2014-07-31 03:24:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 03:24:09.105220"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:09 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.6ms) Rendered application/_search_form.html.haml (1.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (71.7ms) Rendered people/index.html.haml within layouts/application (87.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 92ms (Views: 89.9ms | ActiveRecord: 0.5ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:09.214928"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:09.214928"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:24:09 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.6ms) Rendered people/edit.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:24:09 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"24", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 03:24:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 03:24:09.241636"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:24:09 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.6ms) Rendered people/edit.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:09.268124"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:09.268124"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:24:09 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (11.6ms) Rendered people/edit.html.haml within layouts/application (12.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:24:09 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (11.3ms) Rendered people/new.html.haml within layouts/application (11.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:09.329377"], ["dob", "2012-07-31 03:24:09.328132"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:09.329377"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:24:09 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.4ms) Rendered people/edit.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:24:09 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"24", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 23:24:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 03:24:09.362911"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:09 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.3ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:24:12 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (12.5ms) Rendered people/new.html.haml within layouts/application (13.0ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 23:24:12 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:24:12 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 23:24:13 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"24", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.4ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:13.349425"], ["dob", "2012-07-30 23:24:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:13.349425"]]  (1.0ms) commit transaction Redirected to http://127.0.0.1:63545/people Completed 302 Found in 7ms (ActiveRecord: 1.8ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (5.2ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.5ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:14.342608"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:14.342608"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.4ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-30 23:24:15 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) begin transaction SQL (0.2ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.3ms) commit transaction Redirected to http://127.0.0.1:63545/people Completed 302 Found in 4ms (ActiveRecord: 1.8ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.3ms)  (0.3ms) SELECT COUNT(*) FROM "people"  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.115798"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.115798"]]  (2.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:24:16 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.9ms) Rendered people/edit.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.1ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.147664"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.147664"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.151551"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.151551"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.155050"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.155050"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.157547"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.157547"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.159923"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.159923"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.163277"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.163277"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.165821"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.165821"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.168441"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.168441"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.170957"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.170957"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.173330"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.173330"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.175852"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.175852"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.178815"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.178815"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.181105"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.181105"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.183646"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.183646"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.186223"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.186223"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.188852"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.188852"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.192454"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.192454"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.195138"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.195138"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.197792"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.197792"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.200569"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.200569"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.203310"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.203310"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.205804"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.205804"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.209030"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.209030"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.211408"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.211408"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.213814"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.213814"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.216368"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.216368"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.219425"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.219425"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.222604"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.222604"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.224978"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.224978"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.228565"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.228565"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:16.231432"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:16.231432"]]  (1.0ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 23:24:16 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (12.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 23:24:16 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (11.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.7ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 23:24:17 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.5ms) Rendered people/index.html.haml within layouts/application (12.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.7ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 23:24:17 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (12.5ms) Rendered people/index.html.haml within layouts/application (21.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.8ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.702609"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.702609"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.705525"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.705525"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.708225"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.708225"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.711229"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.711229"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.713717"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.713717"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.717378"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.717378"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.720122"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.720122"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.723261"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.723261"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.726781"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.726781"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.729697"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.729697"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.733000"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.733000"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.736768"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.736768"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.739394"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.739394"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.742396"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.742396"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.745545"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.745545"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.748799"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.748799"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.751695"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.751695"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.754376"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.754376"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.756768"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.756768"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.759318"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.759318"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.761643"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.761643"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.764030"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.764030"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.767432"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.767432"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.770802"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.770802"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.773895"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.773895"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.776471"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.776471"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.779536"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.779536"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.782325"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.782325"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.785502"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.785502"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.788003"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.788003"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:18.791468"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:18.791468"]]  (1.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.4ms) Rendered people/index.html.haml within layouts/application (12.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-30 23:24:19 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (15.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 16.7ms | ActiveRecord: 0.7ms)  (4.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.646639"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.646639"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.649245"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.649245"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.652444"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.652444"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.655091"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.655091"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.657765"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.657765"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.660512"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.660512"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.664138"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.664138"]]  (1.0ms) commit transaction  (0.4ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.667708"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.667708"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.670765"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.670765"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.674174"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.674174"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.677641"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.677641"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.680743"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.680743"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.684250"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.684250"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.687996"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.687996"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.690891"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.690891"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.694114"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.694114"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.697202"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.697202"]]  (0.8ms) commit transaction  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.700468"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.700468"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.703523"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.703523"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.707023"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.707023"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.710565"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.710565"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.714335"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.714335"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.717712"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.717712"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.721552"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.721552"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.725046"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.725046"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.728198"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.728198"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.731557"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.731557"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.734892"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.734892"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.738876"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.738876"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.742316"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.742316"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.745765"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.745765"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.3ms) Rendered people/index.html.haml within layouts/application (16.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 21ms (Views: 18.1ms | ActiveRecord: 0.9ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.785016"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.785016"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.788583"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.788583"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.792161"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.792161"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.795121"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.795121"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.798357"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.798357"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.801848"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.801848"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.805015"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.805015"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.808087"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.808087"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.810959"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.810959"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.814512"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.814512"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.819356"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.819356"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.822808"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.822808"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.825655"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.825655"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.828657"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.828657"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.831714"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.831714"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.834903"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.834903"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.839149"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.839149"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.842512"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.842512"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.845979"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.845979"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.848918"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.848918"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.852393"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.852393"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.855906"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.855906"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.858870"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.858870"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.862081"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.862081"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.865325"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.865325"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.868796"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.868796"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.871795"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.871795"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.875825"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.875825"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.879222"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.879222"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.882992"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.882992"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:19.886073"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:19.886073"]]  (1.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (15.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 16.7ms | ActiveRecord: 0.9ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-30 23:24:20 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (19.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 24ms (Views: 20.7ms | ActiveRecord: 1.3ms)  (4.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.703489"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.703489"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.706363"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.706363"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.708787"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.708787"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.711120"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.711120"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.714725"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.714725"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.717502"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.717502"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.720324"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.720324"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.722696"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.722696"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.725058"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.725058"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.729258"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.729258"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.732524"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.732524"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.736168"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.736168"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.739845"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.739845"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.742427"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.742427"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.745928"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.745928"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.748643"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.748643"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.751381"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.751381"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.754201"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.754201"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.756746"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.756746"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.759945"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.759945"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.762454"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.762454"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.764876"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.764876"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.767470"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.767470"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.770219"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.770219"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.773271"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.773271"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.775686"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.775686"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.779612"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.779612"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.782956"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.782956"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.786187"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.786187"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.788632"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.788632"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:20.791392"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:20.791392"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.5ms) Rendered people/index.html.haml within layouts/application (14.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-30 23:24:21 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.4ms) Rendered people/index.html.haml within layouts/application (12.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.6ms)  (4.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.286306"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.286306"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:21 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (6.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.704413"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.704413"]]  (2.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.708240"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.708240"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.710651"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.710651"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.713113"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.713113"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.715617"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.715617"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.718525"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.718525"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.721034"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.721034"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.723816"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.723816"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.726946"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.726946"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.729621"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.729621"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.732158"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.732158"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.735696"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.735696"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.739927"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.739927"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.742994"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.742994"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.745530"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.745530"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.747908"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.747908"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.750598"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.750598"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.756173"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.756173"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.760049"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.760049"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.764609"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.764609"]]  (1.0ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.768719"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.768719"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.772910"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.772910"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.776574"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.776574"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.780267"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.780267"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.784384"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.784384"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.787796"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.787796"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.792065"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.792065"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.795021"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.795021"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.798405"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_190@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.798405"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.801170"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_191@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.801170"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:21.804167"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_192@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:21.804167"]]  (2.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:21 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (13.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.7ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 23:24:21 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (10.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.5ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-30 23:24:21 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (17.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.6ms)  (2.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:21 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.2ms)  (3.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:21 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms)  (3.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:21 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:21 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.2ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-30 23:24:22 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 7.8ms | ActiveRecord: 0.3ms)  (1.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.407391"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_193@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.407391"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.411262"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_194@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.411262"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.417135"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_195@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.417135"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.420745"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoe_196@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.420745"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.423556"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.423556"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:22 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-30 23:24:22 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.5ms)  (3.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.468756"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.468756"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.471752"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.471752"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.475825"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.475825"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.479922"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.479922"]]  (20.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.503508"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.503508"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.508141"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.508141"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.512960"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.512960"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.515708"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.515708"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.520215"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.520215"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.524646"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.524646"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.529031"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.529031"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.531628"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.531628"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.535579"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.535579"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.545510"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.545510"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.552151"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.552151"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.556734"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.556734"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.560753"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.560753"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.563539"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.563539"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.568835"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.568835"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.571728"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.571728"]]  (190.2ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.764747"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.764747"]]  (126.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.894574"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.894574"]]  (11.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.909023"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.909023"]]  (4.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.915498"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.915498"]]  (9.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.927224"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.927224"]]  (7.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.937484"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.937484"]]  (9.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.949761"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.949761"]]  (4.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.957030"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.957030"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.962515"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.962515"]]  (6.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.971418"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.971418"]]  (20.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:22.993557"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_66@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:22.993557"]]  (10.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.005623"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.005623"]]  (5.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.012913"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.012913"]]  (7.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.022559"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.022559"]]  (4.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.029317"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.029317"]]  (7.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.039014"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.039014"]]  (7.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.048613"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.048613"]]  (8.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.060335"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.060335"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.066366"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.066366"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.072446"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.072446"]]  (8.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.083759"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.083759"]]  (7.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.094068"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.094068"]]  (10.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.106191"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.106191"]]  (9.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.118171"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.118171"]]  (19.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.140376"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.140376"]]  (9.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.153009"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.153009"]]  (11.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.166826"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.166826"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.171857"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.171857"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.176964"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.176964"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:24:23.182617"], ["dob", "1984-07-31 03:24:06.013724"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:24:23.182617"]]  (2.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:24:23 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 0.8ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-30 23:24:23 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.7ms) Rendered people/index.html.haml within layouts/application (13.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 1.2ms)  (1.9ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 03:24:29.006001"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.006001"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 03:24:29.009435"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.009435"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 03:24:29.011972"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.011972"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 03:24:29.014727"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.014727"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 03:24:29.017405"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.017405"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 03:24:29.021275"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.021275"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 03:24:29.023819"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.023819"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 03:24:29.026970"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.026970"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 03:24:29.029638"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.029638"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 03:24:29.032508"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.032508"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 03:24:29.035235"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.035235"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 03:24:29.037802"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.037802"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 03:24:29.040213"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.040213"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 03:24:29.042782"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.042782"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 03:24:29.046038"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.046038"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 03:24:29.048721"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.048721"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 03:24:29.051384"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.051384"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 03:24:29.054055"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.054055"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 03:24:29.056971"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.056971"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 03:24:29.059691"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.059691"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 03:24:29.062831"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.062831"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 03:24:29.066303"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.066303"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 03:24:29.069355"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.069355"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 03:24:29.072194"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.072194"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 03:24:29.074984"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.074984"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 03:24:29.077641"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.077641"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 03:24:29.080797"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.080797"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 03:24:29.084170"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.084170"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 03:24:29.087975"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.087975"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 03:24:29.092251"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.092251"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 03:24:29.095146"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.095146"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:24:29 -0400 Processing by CreditCardInfosController#index as HTML Completed 500 Internal Server Error in 1ms  (2.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.6ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 03:24:29.115933"], ["exp_date", "2016-07-30"], ["secret_code", "4b64ade32055d6d2"], ["updated_at", "2014-07-31 03:24:29.115933"]]  (1.0ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:24:29 -0400 Processing by CreditCardInfosController#index as HTML Completed 500 Internal Server Error in 1ms ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:45:43 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (26.1ms) Rendered people/new.html.haml within layouts/application (30.9ms) Rendered application/_flash_messages.html.haml (13.7ms) Completed 200 OK in 68ms (Views: 64.5ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:45:43 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (1.6ms) Rendered people/_form.html.haml (5.9ms) Rendered people/new.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 14ms (Views: 7.7ms | ActiveRecord: 0.1ms)  (83.1ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (9.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:45:43 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.4ms) Rendered people/new.html.haml within layouts/application (7.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:45:43 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:43.873444"], ["dob", "2014-07-31 03:45:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 03:45:43.873444"]]  (2.6ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 8ms (ActiveRecord: 3.0ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:45:43 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.6ms) Rendered people/new.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)  (3.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:45:43 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.4ms) Rendered people/new.html.haml within layouts/application (8.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:45:43 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:43.928421"], ["dob", "2014-07-31 03:45:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 03:45:43.928421"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.2ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (70.1ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (85.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 89ms (Views: 87.6ms | ActiveRecord: 0.4ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:44.032376"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:44.032376"]]  (2.3ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:45:44 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.6ms) Rendered people/edit.html.haml within layouts/application (8.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.2ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:45:44 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 03:45:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 03:45:44.059787"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:45:44 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (5.7ms) Rendered people/edit.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:44.088680"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:44.088680"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:45:44 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (26.3ms) Rendered people/edit.html.haml within layouts/application (27.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 31ms (Views: 29.9ms | ActiveRecord: 0.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (4.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:45:44 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (10.0ms) Rendered people/new.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms)  (3.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:44.167463"], ["dob", "2012-07-31 03:45:44.166365"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:44.167463"]]  (2.5ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:45:44 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.5ms) Rendered people/edit.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:45:44 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.2ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 23:45:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 03:45:44.204634"]]  (1.2ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.3ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:45:47 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (14.8ms) Rendered people/new.html.haml within layouts/application (15.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 23:45:47 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:45:47 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 23:45:48 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"45", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:48.038048"], ["dob", "2012-07-30 23:45:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:48.038048"]]  (2.4ms) commit transaction Redirected to http://127.0.0.1:50446/people Completed 302 Found in 7ms (ActiveRecord: 3.1ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:48 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (5.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.5ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:49 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (3.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:49.195675"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:49.195675"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:49 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 5.8ms | ActiveRecord: 0.4ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-30 23:45:49 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (1.7ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.1ms) commit transaction Redirected to http://127.0.0.1:50446/people Completed 302 Found in 7ms (ActiveRecord: 3.2ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:49 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.2ms)  (0.3ms) SELECT COUNT(*) FROM "people"  (5.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.022620"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.022620"]]  (2.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:51 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:45:51 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.4ms) Rendered people/edit.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.1ms)  (3.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.061160"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.061160"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.064004"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.064004"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.068506"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.068506"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.072489"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.072489"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.074781"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.074781"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.077322"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.077322"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.081243"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.081243"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.085753"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.085753"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.089765"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.089765"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.092466"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.092466"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.096688"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.096688"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.101456"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.101456"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.105579"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.105579"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.109735"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.109735"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.113678"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.113678"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.118149"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.118149"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.122235"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.122235"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.126113"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.126113"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.130101"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.130101"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.133015"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.133015"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.137356"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.137356"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.141373"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.141373"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.145565"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.145565"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.149995"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.149995"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.154124"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.154124"]]  (23.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.180274"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.180274"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.186405"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.186405"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.191202"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.191202"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.195882"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.195882"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.200403"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.200403"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:51.204768"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:51.204768"]]  (2.7ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 23:45:51 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (10.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 23:45:51 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (11.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.8ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 23:45:52 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (12.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.6ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 23:45:53 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (10.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.6ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.171807"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.171807"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.174983"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.174983"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.177266"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.177266"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.182414"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.182414"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.186493"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.186493"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.189106"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.189106"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.194386"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.194386"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.199040"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.199040"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.203245"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.203245"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.205815"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.205815"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.211064"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.211064"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.215890"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.215890"]]  (3.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.220642"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.220642"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.223361"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.223361"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.226276"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.226276"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.231547"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.231547"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.236056"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.236056"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.240774"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.240774"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.245264"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.245264"]]  (21.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.269261"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.269261"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.273619"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.273619"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.278886"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.278886"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.284066"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.284066"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.288376"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.288376"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.294595"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.294595"]]  (3.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.300971"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.300971"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.306137"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.306137"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.311924"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.311924"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.317565"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.317565"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.322754"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.322754"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:54.328239"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:54.328239"]]  (3.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:54 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (15.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.8ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-30 23:45:54 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (14.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.8ms)  (19.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.5ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.513605"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.513605"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.518400"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.518400"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.523035"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.523035"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.527307"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.527307"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.532547"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.532547"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.536843"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.536843"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.541635"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.541635"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.545937"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.545937"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.551104"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.551104"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.555567"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.555567"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.559822"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.559822"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.564062"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.564062"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.568974"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.568974"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.573355"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.573355"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.577914"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.577914"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.582159"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.582159"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.586454"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.586454"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.590801"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.590801"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.593244"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.593244"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.598427"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.598427"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.602887"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.602887"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.605674"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.605674"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.610077"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.610077"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.614273"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.614273"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.619477"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.619477"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.623739"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.623739"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.627918"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.627918"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.632678"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.632678"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.637100"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.637100"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.641518"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.641518"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:55.645818"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:55.645818"]]  (3.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:55 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (10.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-30 23:45:56 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (15.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 16.2ms | ActiveRecord: 1.1ms)  (130.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (433.8ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (112.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.620375"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.620375"]]  (32.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.655912"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.655912"]]  (14.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.673565"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.673565"]]  (4.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.679815"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.679815"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.685409"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.685409"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.691135"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.691135"]]  (6.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.699996"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.699996"]]  (6.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.708240"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.708240"]]  (7.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.717721"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.717721"]]  (6.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.726468"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.726468"]]  (7.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.736184"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.736184"]]  (7.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.745369"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.745369"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.749712"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.749712"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.754229"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.754229"]]  (5.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.761837"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.761837"]]  (9.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.773881"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.773881"]]  (8.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.784875"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.784875"]]  (9.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.796071"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.796071"]]  (10.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.808922"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.808922"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.814576"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.814576"]]  (7.3ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.824622"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.824622"]]  (8.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.835373"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.835373"]]  (9.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.846855"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.846855"]]  (20.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.869468"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.869468"]]  (20.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.892117"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.892117"]]  (20.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.914323"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.914323"]]  (10.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.927685"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.927685"]]  (18.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.948827"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.948827"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.954456"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.954456"]]  (14.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.970550"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.970550"]]  (10.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:57.983392"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:57.983392"]]  (30.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:58 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (12.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 13.8ms | ActiveRecord: 0.7ms)  (3.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.6ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.052786"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.052786"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.057468"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.057468"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.061720"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.061720"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.066351"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.066351"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.070984"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.070984"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.075380"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.075380"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.080132"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.080132"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.084833"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.084833"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.089376"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.089376"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.093760"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.093760"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.099442"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.099442"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.105303"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.105303"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.110900"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.110900"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.115671"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.115671"]]  (4.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.122227"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.122227"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.127285"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.127285"]]  (4.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.134041"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.134041"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.138285"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.138285"]]  (7.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.147168"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.147168"]]  (10.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.159480"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.159480"]]  (9.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.170960"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.170960"]]  (10.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.183501"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.183501"]]  (9.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.194766"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.194766"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.199164"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.199164"]]  (5.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.206566"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.206566"]]  (8.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.217477"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.217477"]]  (7.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.227508"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.227508"]]  (9.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.238993"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.238993"]]  (4.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.246688"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.246688"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.253223"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.253223"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.257694"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.257694"]]  (10.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:58 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (10.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-30 23:45:58 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (10.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.0ms | ActiveRecord: 0.6ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:58.784840"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:58.784840"]]  (2.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:58 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.4ms)  (3.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.095483"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.095483"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.098458"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.098458"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.102630"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.102630"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.106658"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.106658"]]  (2.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.110656"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.110656"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.115260"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.115260"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.121118"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.121118"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.125190"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.125190"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.129383"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.129383"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.132252"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.132252"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.136538"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.136538"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.140553"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.140553"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.143199"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.143199"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.147407"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.147407"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.152334"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.152334"]]  (2.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.156190"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.156190"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.160341"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.160341"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.164533"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.164533"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.168926"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.168926"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.173676"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.173676"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.177964"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.177964"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.182570"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.182570"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.187304"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.187304"]]  (86.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.276285"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.276285"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.281626"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.281626"]]  (4.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.288744"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.288744"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.294198"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.294198"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.300017"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.300017"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.304743"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_190@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.304743"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.310262"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_191@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.310262"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.316137"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_192@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.316137"]]  (3.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (12.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 23:45:59 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (11.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-30 23:45:59 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (16.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.6ms)  (3.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.4ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.8ms) Rendered people/index.html.haml within layouts/application (2.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms)  (4.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)  (3.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.3ms)  (4.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (1.7ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (9.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.3ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-30 23:45:59 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (4.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.2ms)  (3.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.960531"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_193@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.960531"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.965395"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_194@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.965395"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.969995"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_195@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.969995"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.974334"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoe_196@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.974334"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:45:59.978740"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:45:59.978740"]]  (2.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:45:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-30 23:46:00 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.3ms)  (3.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.028177"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.028177"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.032893"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.032893"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.037501"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.037501"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.042202"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.042202"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.046505"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.046505"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.052381"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.052381"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.057244"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.057244"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.062274"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.062274"]]  (4.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.069336"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.069336"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.074699"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.074699"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.079453"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.079453"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.084016"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.084016"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.088979"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.088979"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.093630"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.093630"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.098823"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.098823"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.103965"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.103965"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.108544"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.108544"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.113121"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.113121"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.117895"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.117895"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.122689"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.122689"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.127555"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.127555"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.133198"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.133198"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.138481"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.138481"]]  (3.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.143504"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.143504"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.148088"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.148088"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.153170"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.153170"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.157796"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.157796"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.162504"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.162504"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.166953"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.166953"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.171491"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.171491"]]  (3.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.176346"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.176346"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.181455"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.181455"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.186695"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.186695"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.191675"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.191675"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.196742"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.196742"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.201829"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.201829"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.207220"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.207220"]]  (3.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.212016"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.212016"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.217375"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.217375"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.222432"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.222432"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.227545"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.227545"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.232496"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.232496"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.237380"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.237380"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.243203"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.243203"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.248147"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.248147"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.253782"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.253782"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.259408"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.259408"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.264449"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.264449"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.269327"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.269327"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:46:00.274450"], ["dob", "1984-07-31 03:45:40.733180"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:46:00.274450"]]  (2.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:46:00 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.5ms) Rendered people/index.html.haml within layouts/application (14.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.7ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-30 23:46:00 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.4ms) Rendered people/index.html.haml within layouts/application (17.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 17.7ms | ActiveRecord: 1.5ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (163.0ms) DELETE FROM "people";  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (4.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 03:46:06.713543"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.713543"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 03:46:06.719405"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.719405"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 03:46:06.724287"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.724287"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 03:46:06.728970"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.728970"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 03:46:06.733536"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.733536"]]  (178.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 03:46:06.914717"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.914717"]]  (10.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 03:46:06.927703"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.927703"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 03:46:06.932914"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.932914"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 03:46:06.937667"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.937667"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 03:46:06.942065"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.942065"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 03:46:06.946327"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.946327"]]  (4.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 03:46:06.952162"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.952162"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 03:46:06.956648"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.956648"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 03:46:06.961019"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.961019"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 03:46:06.966201"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.966201"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 03:46:06.971043"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.971043"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 03:46:06.975849"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.975849"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 03:46:06.981411"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.981411"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 03:46:06.986318"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.986318"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 03:46:06.991075"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.991075"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 03:46:06.996844"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:06.996844"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 03:46:07.001981"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:07.001981"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 03:46:07.006657"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:07.006657"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 03:46:07.011158"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:07.011158"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 03:46:07.015749"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:07.015749"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 03:46:07.020554"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:07.020554"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 03:46:07.024904"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:07.024904"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 03:46:07.029339"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:07.029339"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 03:46:07.034542"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:07.034542"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 03:46:07.039105"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:07.039105"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 03:46:07.043459"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:07.043459"]]  (7.6ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:46:07 -0400 Processing by CreditCardInfosController#index as HTML Completed 500 Internal Server Error in 1ms  (3.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (5.5ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (7.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 03:46:07.082703"], ["exp_date", "2016-07-30"], ["secret_code", "a2ee1fda82fd9ddc"], ["updated_at", "2014-07-31 03:46:07.082703"]]  (18.9ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:46:07 -0400 Processing by CreditCardInfosController#index as HTML Completed 500 Internal Server Error in 1ms ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:47:29 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (28.4ms) Rendered people/new.html.haml within layouts/application (33.4ms) Rendered application/_flash_messages.html.haml (9.6ms) Completed 200 OK in 71ms (Views: 68.0ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:47:29 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"47", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (1.7ms) Rendered people/_form.html.haml (8.1ms) Rendered people/new.html.haml within layouts/application (8.4ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 16ms (Views: 10.0ms | ActiveRecord: 0.1ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:47:29 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.9ms) Rendered people/new.html.haml within layouts/application (9.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:47:29 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"47", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:29.233364"], ["dob", "2014-07-31 03:47:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 03:47:29.233364"]]  (2.5ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 8ms (ActiveRecord: 3.0ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:47:29 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.4ms) Rendered people/new.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)  (3.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:29.268401"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:29.268401"]]  (2.7ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:47:29 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.4ms) Rendered people/edit.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 9.8ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:47:29 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"47", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 03:47:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 03:47:29.296831"]]  (2.9ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 7ms (ActiveRecord: 3.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:47:29 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (76.1ms) Rendered people/edit.html.haml within layouts/application (76.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 79ms (Views: 78.2ms | ActiveRecord: 0.1ms)  (3.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.3ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:47:29 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.0ms) Rendered people/new.html.haml within layouts/application (6.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:47:29 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"47", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:29.420293"], ["dob", "2014-07-31 03:47:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 03:47:29.420293"]]  (2.5ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 2.8ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.9ms) Rendered people/index.html.haml within layouts/application (17.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.4ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:29.459682"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:29.459682"]]  (2.6ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:47:29 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (18.9ms) Rendered people/edit.html.haml within layouts/application (19.4ms) Rendered application/_flash_messages.html.haml (0.8ms) Completed 200 OK in 32ms (Views: 31.0ms | ActiveRecord: 0.2ms)  (7.2ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (4.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:47:29 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (16.2ms) Rendered people/new.html.haml within layouts/application (16.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms)  (4.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:29.568814"], ["dob", "2012-07-31 03:47:29.567700"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:29.568814"]]  (2.6ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:47:29 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.7ms) Rendered people/edit.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:47:29 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"47", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 23:47:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 03:47:29.609695"]]  (3.4ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 8ms (ActiveRecord: 3.9ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.3ms)  (3.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:47:32 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (11.4ms) Rendered people/new.html.haml within layouts/application (12.0ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 23:47:32 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:47:32 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 23:47:33 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"47", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:33.186576"], ["dob", "2012-07-30 23:47:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:33.186576"]]  (2.3ms) commit transaction Redirected to http://127.0.0.1:50994/people Completed 302 Found in 7ms (ActiveRecord: 2.9ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:33 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.8ms) Completed 200 OK in 12ms (Views: 9.6ms | ActiveRecord: 0.7ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.8ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.5ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:34 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.2ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.8ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:34.237802"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:34.237802"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:34 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 8.0ms | ActiveRecord: 0.5ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-30 23:47:34 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (3.9ms) commit transaction Redirected to http://127.0.0.1:50994/people Completed 302 Found in 7ms (ActiveRecord: 4.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.2ms | ActiveRecord: 0.3ms)  (0.2ms) SELECT COUNT(*) FROM "people"  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.081956"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.081956"]]  (2.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:47:36 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.2ms) Rendered people/edit.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.1ms)  (3.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.4ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)  (3.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.3ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-30 23:47:36 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.2ms)  (3.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.619716"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_6@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.619716"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.622613"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_7@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.622613"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.626524"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_8@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.626524"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.630950"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_9@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.630950"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.635208"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.635208"]]  (2.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-30 23:47:36 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.4ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.677894"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.677894"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.682935"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.682935"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.687325"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.687325"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.691396"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.691396"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.696060"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.696060"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.700525"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.700525"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.705678"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.705678"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.710108"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.710108"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.714967"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.714967"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.719184"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.719184"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.723663"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.723663"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.727960"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.727960"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.732324"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.732324"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.737115"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.737115"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.741260"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.741260"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.746396"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.746396"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.750980"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.750980"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.755504"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.755504"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.759725"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.759725"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.764512"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.764512"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.768824"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.768824"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.773119"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.773119"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.777462"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.777462"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.781932"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.781932"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.786684"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.786684"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.791416"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.791416"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.795796"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.795796"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.800505"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.800505"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.804586"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.804586"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.808560"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.808560"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.813059"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.813059"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.817577"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.817577"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.820611"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.820611"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.825438"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.825438"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.829938"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.829938"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.832931"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.832931"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.837448"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.837448"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.841945"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.841945"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.846740"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.846740"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.851499"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.851499"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.856754"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.856754"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.861288"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.861288"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.866084"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.866084"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.870762"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.870762"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.875039"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.875039"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.880301"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.880301"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.885256"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.885256"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.889829"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.889829"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.894707"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.894707"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:36.899611"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:36.899611"]]  (2.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (11.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.7ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-30 23:47:37 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (8.3ms) Rendered people/index.html.haml within layouts/application (22.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 1.1ms)  (26.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (41.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (4.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.594215"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.594215"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.598962"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.598962"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.603140"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.603140"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.607177"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.607177"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.611152"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.611152"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.615251"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.615251"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.619249"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.619249"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.623423"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.623423"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.625960"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.625960"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.630493"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.630493"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.635161"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.635161"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.640029"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.640029"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.645080"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.645080"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.649290"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.649290"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.653337"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.653337"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.657454"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.657454"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.661504"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.661504"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.665560"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.665560"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.669970"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.669970"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.673996"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.673996"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.678075"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.678075"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.682605"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.682605"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.686829"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.686829"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.690851"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.690851"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.695221"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.695221"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.699641"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.699641"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.703672"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.703672"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.707831"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.707831"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.712723"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.712723"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.717409"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.717409"]]  (2.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:38.721237"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:38.721237"]]  (2.7ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 23:47:38 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (9.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 10.8ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 23:47:39 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (12.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.6ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 23:47:39 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (12.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.7ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-30 23:47:40 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (12.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.8ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (59.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.223996"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.223996"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.228771"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.228771"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.233523"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.233523"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.238756"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.238756"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.243485"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.243485"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.247613"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.247613"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.250385"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.250385"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.252894"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.252894"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.255368"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.255368"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.257663"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.257663"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.260168"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.260168"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.263346"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.263346"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.267049"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.267049"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.269777"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.269777"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.273389"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.273389"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.278061"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.278061"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.283583"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.283583"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.286788"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.286788"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.291404"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.291404"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.295792"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.295792"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.300737"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.300737"]]  (225.9ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.529014"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.529014"]]  (9.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.541209"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.541209"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.545694"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.545694"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.550935"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.550935"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.554991"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.554991"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.559222"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.559222"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.563156"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.563156"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.567222"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.567222"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.571802"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.571802"]]  (2.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:42.575592"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:42.575592"]]  (2.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (8.6ms) Rendered people/index.html.haml within layouts/application (16.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 18.2ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-30 23:47:42 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (4.0ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (17.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 22ms (Views: 18.7ms | ActiveRecord: 0.8ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.297917"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.297917"]]  (2.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.301910"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.301910"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.306284"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.306284"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.310448"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.310448"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.314828"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.314828"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.319086"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.319086"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.323262"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.323262"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.327599"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.327599"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.332067"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.332067"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.336615"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.336615"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.340682"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.340682"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.344830"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.344830"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.349626"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.349626"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.353621"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.353621"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.357739"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.357739"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.362498"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.362498"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.367637"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.367637"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.372295"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.372295"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.376289"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.376289"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.381173"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.381173"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.385488"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.385488"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.389677"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.389677"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.393913"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.393913"]]  (6.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.401890"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.401890"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.406098"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.406098"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.410030"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.410030"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.414955"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.414955"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.419673"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.419673"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.424303"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.424303"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.426858"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.426858"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:43.429736"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:43.429736"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (14.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-30 23:47:43 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (17.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 21ms (Views: 18.6ms | ActiveRecord: 1.0ms)  (33.0ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (13.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.421636"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.421636"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.425040"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.425040"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.427576"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.427576"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.430328"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.430328"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.433701"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.433701"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.437228"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.437228"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.441321"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.441321"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.445209"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.445209"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.447856"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.447856"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.451822"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.451822"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.455754"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.455754"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.459653"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.459653"]]  (19.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.480851"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.480851"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.485707"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.485707"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.491046"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.491046"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.495952"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.495952"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.501139"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.501139"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.505528"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.505528"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.509558"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.509558"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.513853"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.513853"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.518014"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.518014"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.521954"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.521954"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.526197"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.526197"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.530464"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.530464"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.535467"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.535467"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.540739"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.540739"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.544783"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.544783"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.549820"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.549820"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.554196"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.554196"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.558265"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.558265"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:44.562351"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:44.562351"]]  (2.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (11.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-30 23:47:44 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (10.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 12.7ms | ActiveRecord: 0.6ms)  (19.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (59.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.236215"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.236215"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.240423"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.240423"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.244605"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.244605"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.248938"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.248938"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.252718"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.252718"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.256864"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.256864"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.260765"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.260765"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.265428"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.265428"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.269671"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.269671"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.273698"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.273698"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.277667"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.277667"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.282212"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.282212"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.286170"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.286170"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.290166"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.290166"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.294570"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.294570"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.298851"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.298851"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.302813"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.302813"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.306695"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.306695"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.310698"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.310698"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.314691"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.314691"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.318808"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.318808"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.322661"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.322661"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.326548"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.326548"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.330645"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.330645"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.334922"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.334922"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.339483"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.339483"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.343484"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.343484"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.347638"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.347638"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.351599"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.351599"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.355580"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.355580"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.359467"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.359467"]]  (2.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.6ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.395691"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.395691"]]  (2.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (5.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.4ms)  (3.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms)  (3.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.738043"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.738043"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.742618"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.742618"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.746866"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.746866"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.751267"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.751267"]]  (2.5ms) commit transaction  (1.9ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.757301"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.757301"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.762386"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.762386"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.767438"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.767438"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.772356"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.772356"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.776626"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.776626"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.781019"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.781019"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.784970"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.784970"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.789050"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.789050"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.793142"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.793142"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.797621"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.797621"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.802796"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.802796"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.807219"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.807219"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.811596"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.811596"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.816436"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.816436"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.820443"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.820443"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.824967"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.824967"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.830244"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.830244"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.834463"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.834463"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.839389"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.839389"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.844034"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.844034"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.848585"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.848585"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.852809"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.852809"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.856935"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.856935"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.861448"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.861448"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.865887"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.865887"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.869965"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.869965"]]  (2.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:47:45.873784"], ["dob", "1984-07-31 03:47:26.207294"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:47:45.873784"]]  (2.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:47:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (11.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 13.6ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 23:47:45 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (11.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-30 23:47:45 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (14.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.5ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.5ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 03:47:50.665663"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.665663"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 03:47:50.671448"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.671448"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 03:47:50.676811"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.676811"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 03:47:50.682169"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.682169"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 03:47:50.686422"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.686422"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 03:47:50.690667"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.690667"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 03:47:50.695087"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.695087"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 03:47:50.699827"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.699827"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 03:47:50.704226"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.704226"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 03:47:50.708493"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.708493"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 03:47:50.712853"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.712853"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 03:47:50.717142"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.717142"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 03:47:50.721369"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.721369"]]  (27.7ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 03:47:50.750859"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.750859"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 03:47:50.757036"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.757036"]]  (3.1ms) commit transaction  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 03:47:50.762486"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.762486"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 03:47:50.767567"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.767567"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 03:47:50.772085"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.772085"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 03:47:50.776445"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.776445"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 03:47:50.781142"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.781142"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 03:47:50.785689"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.785689"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 03:47:50.790381"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.790381"]]  (3.0ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 03:47:50.795358"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.795358"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 03:47:50.801025"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:50.801025"]]  (244.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 03:47:51.047916"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:51.047916"]]  (7.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 03:47:51.057890"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:51.057890"]]  (4.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 03:47:51.063861"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:51.063861"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 03:47:51.069119"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:51.069119"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 03:47:51.073964"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:51.073964"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 03:47:51.078486"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:51.078486"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 03:47:51.082836"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:51.082836"]]  (2.9ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:47:51 -0400 Processing by CreditCardInfosController#index as HTML Completed 500 Internal Server Error in 1ms  (3.7ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (5.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 03:47:51.111490"], ["exp_date", "2016-07-30"], ["secret_code", "07f9708adb551913"], ["updated_at", "2014-07-31 03:47:51.111490"]]  (3.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:47:51 -0400 Processing by CreditCardInfosController#index as HTML Completed 500 Internal Server Error in 1ms ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.9ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:52:39 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (28.1ms) Rendered people/new.html.haml within layouts/application (32.5ms) Rendered application/_flash_messages.html.haml (9.0ms) Completed 200 OK in 65ms (Views: 61.9ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:52:39 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"52", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.9ms) Rendered people/_form.html.haml (7.7ms) Rendered people/new.html.haml within layouts/application (8.1ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 17ms (Views: 10.2ms | ActiveRecord: 0.1ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:39.197786"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:39.197786"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:52:39 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.5ms) Rendered people/edit.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:52:39 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"52", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 03:52:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 03:52:39.226716"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.6ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:52:39 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.8ms) Rendered people/edit.html.haml within layouts/application (8.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.1ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:52:39 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.9ms) Rendered people/new.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:52:39 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"52", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:39.275601"], ["dob", "2014-07-31 03:52:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 03:52:39.275601"]]  (1.4ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.8ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:52:39 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.3ms) Rendered people/new.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 78ms (Views: 78.1ms | ActiveRecord: 0.0ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:52:39 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.5ms) Rendered people/new.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:52:39 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"52", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:39.391151"], ["dob", "2014-07-31 03:52:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 03:52:39.391151"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (2.6ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (18.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.4ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:39.428690"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:39.428690"]]  (1.1ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:52:39 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (13.7ms) Rendered people/edit.html.haml within layouts/application (14.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 29ms (Views: 27.7ms | ActiveRecord: 0.1ms)  (3.7ms) DELETE FROM "credit_card_infos";  (2.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:52:39 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (10.9ms) Rendered people/new.html.haml within layouts/application (11.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.0ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:39.510487"], ["dob", "2012-07-31 03:52:39.509419"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:39.510487"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:52:39 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.7ms) Rendered people/edit.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:52:39 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"52", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.2ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 23:52:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 03:52:39.548245"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.3ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:52:42 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (13.1ms) Rendered people/new.html.haml within layouts/application (13.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 23:52:42 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:52:42 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 23:52:43 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"52", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:43.761817"], ["dob", "2012-07-30 23:52:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:43.761817"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:51575/people Completed 302 Found in 5ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.1ms | ActiveRecord: 0.7ms)  (1.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-30 23:52:44 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.056340"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_4@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.056340"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.060445"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_5@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.060445"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.063240"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_6@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.063240"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.065931"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_7@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.065931"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.068832"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.068832"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (5.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-30 23:52:45 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.3ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.100866"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.100866"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.104950"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.104950"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.107834"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.107834"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.110612"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.110612"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.113619"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.113619"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.116268"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.116268"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.118573"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.118573"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.121684"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.121684"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.124368"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.124368"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.127687"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.127687"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.130947"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.130947"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.133902"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.133902"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.137645"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.137645"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.141216"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.141216"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.144014"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.144014"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.146813"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.146813"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.149655"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.149655"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.152342"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.152342"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.155015"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.155015"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.157804"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.157804"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.160461"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.160461"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.163297"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.163297"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.165881"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.165881"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.168422"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.168422"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.170966"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.170966"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.173545"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.173545"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.176934"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.176934"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.179610"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.179610"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.182289"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.182289"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.185143"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.185143"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.187877"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.187877"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.190884"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.190884"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.194049"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.194049"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.196950"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.196950"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.199890"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.199890"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.202731"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.202731"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.205511"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.205511"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.209452"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.209452"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.212640"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.212640"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.215914"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.215914"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.219165"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.219165"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.222183"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.222183"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.225162"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.225162"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.228960"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.228960"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.232134"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.232134"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.235131"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.235131"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.237991"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.237991"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.241691"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.241691"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.244620"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.244620"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:45.247706"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:45.247706"]]  (1.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (69.2ms) Rendered people/index.html.haml within layouts/application (78.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 82ms (Views: 80.4ms | ActiveRecord: 0.7ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.7ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:47.584439"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:47.584439"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:47 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.4ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-30 23:52:48 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.2ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.4ms) commit transaction Redirected to http://127.0.0.1:51575/people Completed 302 Found in 4ms (ActiveRecord: 1.8ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:48 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (3.6ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.2ms)  (0.3ms) SELECT COUNT(*) FROM "people"  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.7ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.392109"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.392109"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:49 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:52:49 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.1ms) Rendered people/edit.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.1ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.421224"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.421224"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.424616"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.424616"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.427552"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.427552"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.429953"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.429953"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.432799"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.432799"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.435660"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.435660"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.438587"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.438587"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.441191"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.441191"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.444100"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.444100"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.446441"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.446441"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.448908"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.448908"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.451332"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.451332"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.453800"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.453800"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.456400"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.456400"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.459966"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.459966"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.462547"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.462547"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.465032"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.465032"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.467588"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.467588"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.470074"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.470074"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.472717"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.472717"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.475201"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.475201"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.477794"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.477794"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.480280"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.480280"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.482911"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.482911"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.485357"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.485357"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.487674"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.487674"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.490090"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.490090"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.492652"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.492652"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.495066"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.495066"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.497445"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.497445"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:49.500659"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:49.500659"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 23:52:49 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.2ms) Rendered people/index.html.haml within layouts/application (10.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.9ms | ActiveRecord: 0.7ms) Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-07-30 23:52:49 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.7ms) Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 23:52:50 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (11.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.8ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-07-30 23:52:51 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (13.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.9ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.283107"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.283107"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.286247"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.286247"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.289048"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.289048"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.292976"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.292976"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.295872"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.295872"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.298836"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.298836"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.301689"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.301689"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.305074"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.305074"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.309353"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.309353"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.312959"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.312959"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.316397"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.316397"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.320758"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.320758"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.324267"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.324267"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.327000"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.327000"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.329479"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.329479"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.332841"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.332841"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.335400"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.335400"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.337978"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.337978"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.341121"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.341121"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.345232"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.345232"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.348317"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.348317"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.351089"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.351089"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.354235"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.354235"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.358199"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.358199"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.362867"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.362867"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.366752"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.366752"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.370335"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.370335"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.373265"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.373265"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.376692"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.376692"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.380529"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.380529"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:52.384309"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:52.384309"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:52 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (13.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-30 23:52:52 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (20.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 24ms (Views: 21.5ms | ActiveRecord: 0.9ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.213107"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.213107"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.216107"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.216107"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.219461"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.219461"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.222025"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.222025"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.224713"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.224713"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.227472"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.227472"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.230184"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.230184"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.233644"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.233644"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.236151"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.236151"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.238733"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.238733"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.241607"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.241607"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.244538"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.244538"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.247895"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.247895"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.250998"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.250998"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.254371"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.254371"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.257855"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.257855"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.260919"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.260919"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.263866"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.263866"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.266428"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.266428"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.268910"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.268910"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.271726"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.271726"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.275258"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.275258"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.279335"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.279335"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.283941"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.283941"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.286860"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.286860"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.290106"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.290106"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.293700"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.293700"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.296628"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.296628"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.299309"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.299309"]]  (1.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.302656"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.302656"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.305480"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.305480"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:53 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.0ms) Rendered people/index.html.haml within layouts/application (13.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.8ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-30 23:52:53 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (9.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.5ms)  (2.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (5.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.786381"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.786381"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.790195"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.790195"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.793082"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.793082"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.795457"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.795457"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.797894"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.797894"]]  (2.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.801524"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.801524"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.803935"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.803935"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.806707"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.806707"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.809728"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.809728"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.812672"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.812672"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.815093"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.815093"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.818170"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.818170"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.821114"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.821114"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.824430"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.824430"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.828988"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.828988"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.831561"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.831561"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.833966"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.833966"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.836395"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.836395"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.838971"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.838971"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.841557"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.841557"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.845664"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.845664"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.849105"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.849105"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.851699"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.851699"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.855680"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.855680"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.858297"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.858297"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.864336"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.864336"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.869962"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.869962"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.873306"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.873306"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.876766"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.876766"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.879999"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.879999"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:53.882961"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:53.882961"]]  (1.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:53 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (11.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 12.8ms | ActiveRecord: 0.8ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-30 23:52:54 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (12.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 18.1ms | ActiveRecord: 0.8ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (7.6ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.597994"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.597994"]]  (15.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.615257"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.615257"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.617765"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.617765"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.620346"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.620346"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.623090"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.623090"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.629679"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.629679"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.632097"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.632097"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.634371"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.634371"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.637659"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.637659"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.641730"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.641730"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.646026"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.646026"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.651007"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.651007"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.654396"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.654396"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.658554"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.658554"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.660929"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.660929"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.664955"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.664955"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.669096"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.669096"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.673070"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.673070"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.676064"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.676064"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.679927"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.679927"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.683037"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.683037"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.687356"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.687356"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.689781"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.689781"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.692476"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.692476"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.695334"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.695334"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.699829"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.699829"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.702618"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.702618"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.706664"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.706664"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.712700"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.712700"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.717338"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.717338"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.720093"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.720093"]]  (2.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:54 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.0ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.6ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (2.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:54 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:54.776261"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:54.776261"]]  (177.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:55 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.330422"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.330422"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.336227"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.336227"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.340837"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.340837"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.345470"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.345470"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.349843"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.349843"]]  (2.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.353534"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.353534"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.357653"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.357653"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.362241"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.362241"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.368062"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.368062"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.372362"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.372362"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.377004"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.377004"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.381492"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.381492"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.385679"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.385679"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.389827"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.389827"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.392752"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.392752"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.396967"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.396967"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.401116"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.401116"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.405212"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.405212"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.409673"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.409673"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.413767"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.413767"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.417821"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.417821"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.421875"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.421875"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.426240"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.426240"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.430528"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.430528"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.434656"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.434656"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.438769"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.438769"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.443178"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.443178"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.446312"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.446312"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.450291"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.450291"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.454508"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.454508"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:52:55.457699"], ["dob", "1984-07-31 03:52:36.186362"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:52:55.457699"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:52:55 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (13.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.7ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 23:52:55 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (10.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-30 23:52:55 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (14.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.6ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 03:53:00.240530"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.240530"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 03:53:00.244426"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.244426"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 03:53:00.248985"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.248985"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 03:53:00.251797"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.251797"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 03:53:00.256727"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.256727"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 03:53:00.261225"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.261225"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 03:53:00.265196"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.265196"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 03:53:00.267832"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.267832"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 03:53:00.270473"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.270473"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 03:53:00.274823"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.274823"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 03:53:00.279364"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.279364"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 03:53:00.283974"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.283974"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 03:53:00.286698"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.286698"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 03:53:00.291574"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.291574"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 03:53:00.296466"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.296466"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 03:53:00.300677"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.300677"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 03:53:00.305147"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.305147"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 03:53:00.309751"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.309751"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 03:53:00.314051"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.314051"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 03:53:00.318517"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.318517"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 03:53:00.323723"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.323723"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 03:53:00.329345"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.329345"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 03:53:00.335390"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.335390"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 03:53:00.340467"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.340467"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 03:53:00.346614"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.346614"]]  (26.1ms) commit transaction  (0.4ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 03:53:00.376797"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.376797"]]  (13.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 03:53:00.393306"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.393306"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 03:53:00.399006"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.399006"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 03:53:00.403628"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.403628"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 03:53:00.408212"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.408212"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 03:53:00.413238"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.413238"]]  (2.9ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:53:00 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.3ms) Rendered credit_card_infos/index.html.haml within layouts/application (12.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 41ms (Views: 38.7ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 23:53:00 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.5ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.2ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.4ms) Rendered credit_card_infos/index.html.haml within layouts/application (7.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.8ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-07-30 23:53:00 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.3ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 03:53:00.511592"], ["exp_date", "2016-07-30"], ["secret_code", "4dae47316dba1e08"], ["updated_at", "2014-07-31 03:53:00.511592"]]  (2.7ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:53:00 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered credit_card_infos/index.html.haml within layouts/application (2.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.3ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 03:54:07.033753"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.033753"]]  (1.3ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:54:07 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (11.6ms) Rendered credit_card_infos/index.html.haml within layouts/application (20.8ms) Rendered application/_flash_messages.html.haml (9.5ms) Completed 200 OK in 51ms (Views: 49.7ms | ActiveRecord: 0.5ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 03:54:07.118503"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.118503"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 03:54:07.121115"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.121115"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 03:54:07.123638"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.123638"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 03:54:07.126235"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.126235"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 03:54:07.128826"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.128826"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 03:54:07.131173"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.131173"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 03:54:07.133641"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.133641"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 03:54:07.136262"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.136262"]]  (2.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 03:54:07.139836"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.139836"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 03:54:07.142553"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.142553"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 03:54:07.144950"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.144950"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 03:54:07.147504"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.147504"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 03:54:07.150215"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.150215"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 03:54:07.152688"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.152688"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 03:54:07.155116"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.155116"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 03:54:07.158949"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.158949"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 03:54:07.161663"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.161663"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 03:54:07.164097"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.164097"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 03:54:07.167493"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.167493"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 03:54:07.170742"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.170742"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 03:54:07.174113"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.174113"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 03:54:07.176761"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.176761"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 03:54:07.179323"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.179323"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 03:54:07.181777"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.181777"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 03:54:07.184049"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.184049"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 03:54:07.186313"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.186313"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 03:54:07.189193"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.189193"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 03:54:07.191912"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.191912"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 03:54:07.194447"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.194447"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 03:54:07.196880"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.196880"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 03:54:07.199303"], ["exp_date", "2016-07-30"], ["secret_code", "2f90659d7130ad64"], ["updated_at", "2014-07-31 03:54:07.199303"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:54:07 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered credit_card_infos/index.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 23:54:07 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-07-30 23:54:07 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.4ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (2.0ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (12.8ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 103ms (Views: 99.7ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 13ms (Views: 11.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 23:54:14 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:14 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-30 23:54:14 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:15 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.182491"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.182491"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.185987"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.185987"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.188986"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.188986"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.192693"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.192693"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.195544"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.195544"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.198190"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.198190"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.200777"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_31@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.200777"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.204428"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.204428"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.207732"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.207732"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.211547"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.211547"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.214158"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.214158"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.216692"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.216692"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.219529"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.219529"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.222262"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.222262"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.225344"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.225344"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.228018"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.228018"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.230731"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.230731"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.233329"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.233329"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.236200"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.236200"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.239875"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.239875"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.242792"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.242792"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.245294"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_31@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.245294"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.247951"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.247951"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.251785"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.251785"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.255775"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.255775"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.258991"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.258991"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.261671"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.261671"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.264159"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.264159"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.266703"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.266703"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.269472"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_20@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.269472"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.273490"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.273490"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.277006"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.277006"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.280283"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.280283"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.284325"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.284325"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.288454"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_20@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.288454"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.291972"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.291972"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.296114"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.296114"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.299260"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.299260"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.302143"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.302143"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.304927"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.304927"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.307795"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.307795"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.310883"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.310883"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.313830"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.313830"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.316778"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.316778"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.320221"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.320221"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.323358"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.323358"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.326273"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.326273"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.329444"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.329444"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.332479"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.332479"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:15.335485"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:15.335485"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (14.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:15 -0400  (1.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.552753"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_1@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.552753"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.556201"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_2@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.556201"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.559343"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_3@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.559343"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.561943"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_4@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.561943"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.564408"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.564408"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (5.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-30 23:54:17 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (5.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.4ms)  (2.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.616948"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_5@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.616948"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.619529"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_6@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.619529"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.621845"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_7@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.621845"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.624666"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.624666"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.627922"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.627922"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.630649"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.630649"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.674197"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.674197"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.677241"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.677241"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.681184"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.681184"]]  (1.0ms) commit transaction  (0.9ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.684963"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.684963"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.688160"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.688160"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.691075"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.691075"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.693753"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.693753"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.697528"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.697528"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.699972"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.699972"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.703548"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.703548"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.706757"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.706757"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.710406"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.710406"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.713735"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.713735"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.716052"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.716052"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.719356"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.719356"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.721754"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.721754"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.724194"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.724194"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.726669"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.726669"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.729224"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.729224"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.733124"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.733124"]]  (1.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.736773"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.736773"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.739183"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.739183"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.742226"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.742226"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.744626"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.744626"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.746931"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.746931"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (11.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 23:54:17 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.5ms) Rendered people/index.html.haml within layouts/application (12.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-30 23:54:17 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (17.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.9ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:17.837703"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:17.837703"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:17 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.122372"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.122372"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.126240"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.126240"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.128694"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.128694"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.131084"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.131084"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.133501"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.133501"]]  (2.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.137229"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.137229"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.139773"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.139773"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.142394"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.142394"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.144910"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.144910"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.147344"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.147344"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.149823"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.149823"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.152720"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.152720"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.155736"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.155736"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.159327"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.159327"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.162756"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.162756"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.166035"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.166035"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.168280"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.168280"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.170703"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.170703"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.173442"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.173442"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.177137"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.177137"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.180991"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.180991"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.184212"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.184212"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.186866"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.186866"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.191312"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.191312"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.193988"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.193988"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.198868"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.198868"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.203397"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.203397"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.205844"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.205844"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.208691"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.208691"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.211333"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.211333"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.214047"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.214047"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (10.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.6ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.244177"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.244177"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.246783"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.246783"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.249642"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.249642"]]  (2.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.253506"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.253506"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.256349"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.256349"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.259266"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.259266"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.261859"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.261859"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.266123"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.266123"]]  (2.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.269952"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.269952"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.274636"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.274636"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.277527"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.277527"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.282228"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.282228"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.286095"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.286095"]]  (3.5ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.292643"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.292643"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.297305"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.297305"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.301440"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.301440"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.304188"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.304188"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.307721"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.307721"]]  (1.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.311128"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.311128"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.315695"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.315695"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.318390"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.318390"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.320941"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.320941"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.323335"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.323335"]]  (2.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.327288"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.327288"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.330366"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.330366"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.335591"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.335591"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.340421"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.340421"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.344751"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.344751"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.347218"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.347218"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.351236"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.351236"]]  (2.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:18.355111"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:18.355111"]]  (2.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (13.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:18 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-30 23:54:18 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.8ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (21.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 25ms (Views: 22.5ms | ActiveRecord: 1.1ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:18 -0400  (27.9ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (32.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.217242"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.217242"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.219775"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.219775"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.222271"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.222271"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.224941"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.224941"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.228849"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.228849"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.232973"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.232973"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.237637"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.237637"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.240352"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.240352"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.244552"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.244552"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.249540"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.249540"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.253539"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.253539"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.258141"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.258141"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.262509"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.262509"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.266742"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.266742"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.271267"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.271267"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.275636"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.275636"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.279740"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.279740"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.283240"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.283240"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.288918"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.288918"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.294305"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.294305"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.298534"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.298534"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.302701"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.302701"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.307135"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.307135"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.311558"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.311558"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.315575"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.315575"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.319542"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.319542"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.323799"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.323799"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.335226"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.335226"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.340865"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.340865"]]  (5.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.348119"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.348119"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.351022"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.351022"]]  (2.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (12.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:19 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-30 23:54:19 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (10.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:19 -0400  (60.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (45.7ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.924039"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.924039"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.929144"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.929144"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.933468"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.933468"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.936598"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.936598"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.940773"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.940773"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.945588"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.945588"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.949549"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.949549"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.952096"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.952096"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.956670"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.956670"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.961399"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.961399"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.966947"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.966947"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.969823"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.969823"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.972366"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.972366"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.976610"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.976610"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.980780"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.980780"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.985051"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.985051"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.989510"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.989510"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.993829"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.993829"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:19.997839"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:19.997839"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:20.002568"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:20.002568"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:20.006818"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:20.006818"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:20.011353"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:20.011353"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:20.015679"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:20.015679"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:20.020390"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:20.020390"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:20.024735"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:20.024735"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:20.029098"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:20.029098"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:20.033152"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:20.033152"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:20.037300"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:20.037300"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:20.041736"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:20.041736"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:20.046424"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:20.046424"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:20.050786"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:20.050786"]]  (2.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (14.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:20 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-30 23:54:20 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (13.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:20 -0400  (104.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (52.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:20.992257"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:20.992257"]]  (4.4ms) commit transaction  (0.5ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:20.999019"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:20.999019"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.003616"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.003616"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.008616"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.008616"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.013019"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.013019"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.017142"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.017142"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.021378"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.021378"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.025851"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.025851"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.030191"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.030191"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.034296"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.034296"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.038405"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.038405"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.043011"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.043011"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.047389"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.047389"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.051402"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.051402"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.055566"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.055566"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.058285"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.058285"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.062445"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.062445"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.067120"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.067120"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.070275"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.070275"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.074609"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.074609"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.078854"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.078854"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.082949"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.082949"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.086936"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.086936"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.091323"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.091323"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.095684"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.095684"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.099693"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.099693"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.104232"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.104232"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.108623"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.108623"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.112743"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.112743"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.116781"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.116781"]]  (2.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:21.120631"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:21.120631"]]  (2.6ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 23:54:21 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (9.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:21 -0400 Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-07-30 23:54:21 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.0ms) Rendered people/index.html.haml within layouts/application (15.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:21 -0400 Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 23:54:22 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (13.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:22 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-07-30 23:54:22 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (2.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.4ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (16.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 19ms (Views: 16.9ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:22 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (138.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (89.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:24.149701"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:24.149701"]]  (3.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:24 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:54:24 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (16.9ms) Rendered people/edit.html.haml within layouts/application (19.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.2ms)  (4.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:24.204128"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:24.204128"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:24 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:24 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-30 23:54:24 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (182.3ms) commit transaction Redirected to http://127.0.0.1:52196/people Completed 302 Found in 186ms (ActiveRecord: 182.9ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:25 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (2.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:25 -0400  (0.3ms) SELECT COUNT(*) FROM "people"  (33.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (34.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:54:26 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.1ms) Rendered people/new.html.haml within layouts/application (8.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:54:26 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (1.6ms) Rendered people/_form.html.haml (6.2ms) Rendered people/new.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 14ms (Views: 7.7ms | ActiveRecord: 0.1ms)  (3.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:54:26 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.7ms) Rendered people/new.html.haml within layouts/application (9.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:26.169799"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:26.169799"]]  (3.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:54:26 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (10.1ms) Rendered people/edit.html.haml within layouts/application (10.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.2ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.4ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:54:26 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (10.1ms) Rendered people/new.html.haml within layouts/application (10.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 12.1ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:26 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 23:54:27 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (15.9ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:27.261751"], ["dob", "2012-07-30 23:54:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:27.261751"]]  (1.6ms) commit transaction Redirected to http://127.0.0.1:52196/people Completed 302 Found in 20ms (ActiveRecord: 17.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:27 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:27 -0400  (240.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:28.396192"], ["dob", "2012-07-31 03:54:28.395117"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:28.396192"]]  (122.2ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:54:28 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.1ms) Rendered people/edit.html.haml within layouts/application (8.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:54:28 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.6ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 23:54:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 03:54:28.556037"]]  (3.6ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 9ms (ActiveRecord: 4.5ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:28 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.4ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.6ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:28.596847"], ["dob", "1984-07-31 03:54:04.137445"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:28.596847"]]  (2.5ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:54:28 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.4ms) Rendered people/edit.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:54:28 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 03:54:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 03:54:28.624389"]]  (3.0ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 8ms (ActiveRecord: 3.6ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:54:28 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.5ms) Rendered people/edit.html.haml within layouts/application (8.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.1ms)  (3.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:54:28 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.3ms) Rendered people/new.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:54:28 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:28.682029"], ["dob", "2014-07-31 03:54:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 03:54:28.682029"]]  (2.4ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 2.7ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:28 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (5.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.4ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.5ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:54:28 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.2ms) Rendered people/new.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:54:28 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:28.731409"], ["dob", "2014-07-31 03:54:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 03:54:28.731409"]]  (2.4ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 5ms (ActiveRecord: 2.8ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:54:28 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.2ms) Rendered people/new.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.4ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:54:53 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (27.6ms) Rendered people/new.html.haml within layouts/application (32.2ms) Rendered application/_flash_messages.html.haml (9.4ms) Completed 200 OK in 64ms (Views: 60.9ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:54:53 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.9ms) Rendered people/_form.html.haml (6.5ms) Rendered people/new.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 16ms (Views: 8.7ms | ActiveRecord: 0.2ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:54:53 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.1ms) Rendered people/new.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:54:53 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:53.311573"], ["dob", "2014-07-31 03:54:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 03:54:53.311573"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 6ms (ActiveRecord: 1.3ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:54:53 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.1ms) Rendered people/new.html.haml within layouts/application (7.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:53.341607"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:53.341607"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:54:53 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.5ms) Rendered people/edit.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.0ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:54:53 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 03:54:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 03:54:53.367696"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:54:53 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.4ms) Rendered people/edit.html.haml within layouts/application (70.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 74ms (Views: 72.4ms | ActiveRecord: 0.2ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:54:53 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.7ms) Rendered people/new.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-30 23:54:53 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"03", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:53.477563"], ["dob", "2014-07-31 03:54:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 03:54:53.477563"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:53 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (1.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.5ms) Rendered people/index.html.haml within layouts/application (16.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 20ms (Views: 18.3ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:53.513225"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:53.513225"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:54:53 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (12.8ms) Rendered people/edit.html.haml within layouts/application (13.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:54:53 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.3ms) Rendered people/new.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:53.561645"], ["dob", "2012-07-31 03:54:53.560719"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:53.561645"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:54:53 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.9ms) Rendered people/edit.html.haml within layouts/application (8.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-30 23:54:53 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-30 23:54:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 03:54:53.597312"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:53 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.5ms)  (1.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-30 23:54:56 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (12.3ms) Rendered people/new.html.haml within layouts/application (12.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-30 23:54:56 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:54:56 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-30 23:54:57 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"23", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.3ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:57.437372"], ["dob", "2012-07-30 23:54:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:57.437372"]]  (0.8ms) commit transaction Redirected to http://127.0.0.1:52809/people Completed 302 Found in 6ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:57 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.1ms | ActiveRecord: 0.7ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:58 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:54:58.293355"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:54:58.293355"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:58 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.4ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-30 23:54:59 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.5ms) commit transaction Redirected to http://127.0.0.1:52809/people Completed 302 Found in 4ms (ActiveRecord: 2.0ms) Started GET "/people" for 127.0.0.1 at 2014-07-30 23:54:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.3ms)  (0.2ms) SELECT COUNT(*) FROM "people"  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.068398"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.068398"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:55:00 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-30 23:55:00 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.1ms) Rendered people/edit.html.haml within layouts/application (8.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:55:00 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:55:00 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (2.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-30 23:55:00 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:55:00 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.521097"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_6@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.521097"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.524139"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_7@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.524139"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.526876"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_8@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.526876"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.529502"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_9@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.529502"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.532104"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.532104"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:55:00 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (7.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.5ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-30 23:55:00 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.568241"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.568241"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.570926"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.570926"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.573534"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.573534"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.576059"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.576059"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.578727"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.578727"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.581175"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.581175"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.583717"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.583717"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.587159"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.587159"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.589978"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.589978"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.593103"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.593103"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.595832"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.595832"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.599063"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.599063"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.601783"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.601783"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.604684"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.604684"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.608733"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.608733"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.612114"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.612114"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.615024"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.615024"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.617651"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.617651"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.620194"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.620194"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.623090"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.623090"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.626365"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.626365"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.629143"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.629143"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.632667"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.632667"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.635526"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.635526"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.637985"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.637985"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.640489"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.640489"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.643429"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.643429"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.646314"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.646314"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.650119"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.650119"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.654244"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.654244"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.657393"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.657393"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.660516"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.660516"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.663552"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.663552"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.667431"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.667431"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.671377"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.671377"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.675335"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.675335"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.678427"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.678427"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.681202"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.681202"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.684352"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.684352"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.687267"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.687267"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.690230"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.690230"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.693885"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.693885"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.696692"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.696692"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.699516"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.699516"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.703434"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.703434"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.706504"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.706504"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.709835"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.709835"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.712809"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.712809"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.716195"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.716195"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:00.719125"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:00.719125"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:55:00 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.6ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.936075"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.936075"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.939303"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.939303"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.942681"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.942681"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.946344"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.946344"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.948999"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.948999"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.951612"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.951612"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.953966"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.953966"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.956625"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.956625"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.959445"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.959445"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.963135"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.963135"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.965678"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.965678"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.968339"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.968339"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.970874"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.970874"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.974506"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.974506"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.977830"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.977830"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.980385"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.980385"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.983223"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.983223"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.985916"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.985916"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.989708"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.989708"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.992084"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.992084"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.994450"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.994450"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.996880"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.996880"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:02.999464"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:02.999464"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:03.001867"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:03.001867"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:03.004341"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:03.004341"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:03.007608"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:03.007608"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:03.010487"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:03.010487"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:03.013066"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:03.013066"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:03.015505"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:03.015505"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:03.019140"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:03.019140"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:03.022382"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:03.022382"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 23:55:03 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.0ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:55:03 -0400 Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-07-30 23:55:03 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.2ms) Rendered people/index.html.haml within layouts/application (11.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:55:03 -0400 Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-30 23:55:04 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (13.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:55:04 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-07-30 23:55:04 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.1ms) Rendered people/index.html.haml within layouts/application (11.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:55:04 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.813189"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.813189"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.815881"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.815881"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.818453"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.818453"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.821716"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.821716"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.829201"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.829201"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.831891"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.831891"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.835243"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.835243"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.841760"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.841760"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.844708"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.844708"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.848696"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.848696"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.851256"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.851256"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.853716"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.853716"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.856649"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.856649"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.860223"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.860223"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.864710"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.864710"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.867973"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.867973"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.870494"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.870494"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.874451"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.874451"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.878495"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.878495"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.881433"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.881433"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.884232"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.884232"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.887257"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.887257"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.890928"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.890928"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.893930"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.893930"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.897249"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.897249"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.900712"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.900712"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.904117"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.904117"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.907890"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.907890"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.911305"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.911305"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.914718"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.914718"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:05.917463"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:05.917463"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:55:05 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (10.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:55:05 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-30 23:55:06 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (14.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:55:06 -0400  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.654583"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.654583"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.657806"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.657806"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.660305"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.660305"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.662749"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.662749"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.666875"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.666875"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.670422"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.670422"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.673866"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.673866"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.676602"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.676602"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.680136"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.680136"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.682640"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.682640"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.685642"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.685642"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.688452"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.688452"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.692125"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.692125"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.694986"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.694986"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.697473"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.697473"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.700088"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.700088"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.703048"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.703048"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.705655"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.705655"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.708924"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.708924"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.711652"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.711652"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.714285"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.714285"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.717849"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.717849"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.720288"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.720288"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.722660"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.722660"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.725468"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.725468"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.727966"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.727966"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.730410"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.730410"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.732776"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.732776"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.735578"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.735578"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.738332"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.738332"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:06.741768"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:06.741768"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:55:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (12.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:55:06 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-30 23:55:06 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (11.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:55:07 -0400  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.210811"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.210811"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.213335"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.213335"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.215737"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.215737"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.218169"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.218169"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.220609"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.220609"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.224270"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.224270"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.227363"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.227363"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.229918"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.229918"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.232382"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.232382"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.234778"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.234778"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.237411"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.237411"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.239927"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.239927"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.243225"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.243225"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.245749"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.245749"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.248848"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.248848"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.251297"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.251297"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.253797"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.253797"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.257476"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.257476"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.260930"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.260930"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.263961"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.263961"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.266729"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.266729"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.269194"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.269194"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.271863"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.271863"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.274526"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.274526"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.277197"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.277197"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.279882"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.279882"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.282377"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.282377"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.284913"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.284913"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.287405"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.287405"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.290399"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.290399"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:07.293382"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:07.293382"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:55:07 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.7ms) Rendered people/index.html.haml within layouts/application (15.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:55:07 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-30 23:55:07 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (19.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:55:07 -0400  (1.9ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.084938"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.084938"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.087720"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.087720"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.090991"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.090991"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.093496"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.093496"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.096217"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.096217"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.098504"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.098504"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.101120"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.101120"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.103823"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.103823"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.106129"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.106129"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.108832"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.108832"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.112027"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.112027"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.114671"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.114671"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.118273"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.118273"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.121162"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.121162"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.125546"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.125546"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.128622"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.128622"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.131192"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.131192"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.133851"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.133851"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.140896"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.140896"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.145954"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.145954"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.148649"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.148649"]]  (1.0ms) commit transaction  (2.4ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.153953"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.153953"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.156865"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.156865"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.160328"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.160328"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.163947"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.163947"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.167418"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.167418"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.170555"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.170555"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.173229"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.173229"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.177100"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.177100"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.179605"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.179605"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.182803"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.182803"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:55:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 1.0ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.214817"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.214817"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:55:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-30 23:55:08 -0400  (2.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-30 23:55:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.3ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.537089"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.537089"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.540024"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.540024"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.542779"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.542779"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.545162"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.545162"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.548101"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.548101"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.551051"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.551051"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.553763"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.553763"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.557501"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.557501"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.560631"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.560631"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.563291"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.563291"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.565900"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.565900"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.568660"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.568660"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.571428"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.571428"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.574072"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.574072"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.576616"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.576616"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.579369"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.579369"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.581922"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.581922"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.584444"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.584444"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.587486"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.587486"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.591402"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.591402"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.594244"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.594244"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.596614"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.596614"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.598983"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.598983"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.601648"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.601648"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.604551"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.604551"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.607374"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.607374"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.610057"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.610057"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.612704"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.612704"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.615557"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.615557"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.617895"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.617895"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 03:55:08.620469"], ["dob", "1984-07-31 03:54:50.260065"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 03:55:08.620469"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-30 23:55:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (10.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 23:55:08 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-30 23:55:08 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (14.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.6ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 03:55:13.418919"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.418919"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 03:55:13.423202"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.423202"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 03:55:13.426255"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.426255"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 03:55:13.429019"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.429019"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 03:55:13.432332"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.432332"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 03:55:13.435336"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.435336"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 03:55:13.438003"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.438003"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 03:55:13.440613"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.440613"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 03:55:13.443737"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.443737"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 03:55:13.446326"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.446326"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 03:55:13.448947"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.448947"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 03:55:13.451652"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.451652"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 03:55:13.454450"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.454450"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 03:55:13.457550"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.457550"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 03:55:13.460531"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.460531"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 03:55:13.463123"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.463123"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 03:55:13.465501"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.465501"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 03:55:13.468587"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.468587"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 03:55:13.472065"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.472065"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 03:55:13.474707"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.474707"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 03:55:13.477454"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.477454"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 03:55:13.480003"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.480003"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 03:55:13.482913"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.482913"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 03:55:13.485838"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.485838"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 03:55:13.488587"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.488587"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 03:55:13.491404"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.491404"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 03:55:13.495072"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.495072"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 03:55:13.497948"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.497948"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 03:55:13.501124"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.501124"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 03:55:13.505235"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.505235"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 03:55:13.509084"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.509084"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:55:13 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.4ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (13.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 32ms (Views: 30.7ms | ActiveRecord: 0.8ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-07-30 23:55:13 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.2ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-07-30 23:55:13 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.4ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 03:55:13.596133"], ["exp_date", "2016-07-30"], ["secret_code", "e5956ce815cb302b"], ["updated_at", "2014-07-31 03:55:13.596133"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-30 23:55:13 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (2.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.3ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 04:02:22.628167"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.628167"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-31 00:02:22 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (12.0ms) Rendered credit_card_infos/index.html.haml within layouts/application (21.0ms) Rendered application/_flash_messages.html.haml (9.4ms) Completed 200 OK in 49ms (Views: 48.2ms | ActiveRecord: 0.3ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 04:02:22.705697"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.705697"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 04:02:22.709012"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.709012"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 04:02:22.712442"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.712442"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 04:02:22.715135"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.715135"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 04:02:22.717545"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.717545"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 04:02:22.719929"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.719929"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 04:02:22.722192"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.722192"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 04:02:22.724631"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.724631"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 04:02:22.726957"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.726957"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 04:02:22.729348"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.729348"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 04:02:22.732519"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.732519"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 04:02:22.735514"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.735514"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 04:02:22.738274"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.738274"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 04:02:22.740802"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.740802"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 04:02:22.743473"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.743473"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 04:02:22.746354"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.746354"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 04:02:22.749633"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.749633"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 04:02:22.752927"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.752927"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 04:02:22.756078"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.756078"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 04:02:22.759365"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.759365"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 04:02:22.762674"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.762674"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 04:02:22.765286"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.765286"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 04:02:22.768621"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.768621"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 04:02:22.772247"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.772247"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 04:02:22.777232"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.777232"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 04:02:22.781240"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.781240"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 04:02:22.785387"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.785387"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 04:02:22.788172"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.788172"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 04:02:22.791781"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.791781"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 04:02:22.794353"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.794353"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 04:02:22.796646"], ["exp_date", "2016-07-31"], ["secret_code", "5681430e248528bd"], ["updated_at", "2014-07-31 04:02:22.796646"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-31 00:02:22 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-07-31 00:02:22 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.6ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-07-31 00:02:22 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.4ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:27 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (1.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (11.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 104ms (Views: 100.0ms | ActiveRecord: 0.5ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:30 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 13ms (Views: 11.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-31 00:02:30 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:30 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-31 00:02:30 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:30 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:30 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:31 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.029119"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.029119"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.033639"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.033639"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.037441"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.037441"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.040703"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.040703"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.043504"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.043504"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.046515"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.046515"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.050381"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.050381"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.053567"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.053567"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.056203"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.056203"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.059808"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.059808"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.063377"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.063377"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.066266"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.066266"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.069553"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.069553"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.072264"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.072264"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.074870"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.074870"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.077420"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.077420"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.080949"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.080949"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.083708"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.083708"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.087019"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.087019"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.090080"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.090080"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.092784"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.092784"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.095444"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.095444"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.099062"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.099062"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.101985"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.101985"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.104853"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.104853"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.107562"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.107562"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.110374"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.110374"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.113203"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.113203"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.116408"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.116408"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.119766"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.119766"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.122709"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.122709"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.125664"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.125664"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.128601"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.128601"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.131629"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.131629"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.134968"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.134968"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.138297"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.138297"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.142311"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.142311"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.146828"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.146828"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.150011"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.150011"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.153483"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.153483"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.157130"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.157130"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.161826"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.161826"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.166185"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.166185"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.170465"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.170465"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.174466"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.174466"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.178202"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.178202"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.181969"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.181969"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.185649"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.185649"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.188670"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.188670"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:31.191508"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:31.191508"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:31 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.9ms) Rendered people/index.html.haml within layouts/application (14.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:31 -0400  (1.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.413813"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_1@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.413813"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.417938"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_2@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.417938"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.421244"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_3@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.421244"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.424874"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_4@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.424874"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.428519"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.428519"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:33 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (5.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-31 00:02:33 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.5ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:33 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (74.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 76ms (Views: 75.6ms | ActiveRecord: 0.3ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.552343"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_5@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.552343"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.555024"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_6@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.555024"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.557365"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_7@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.557365"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.559674"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.559674"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.562002"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.562002"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.564592"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.564592"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.567117"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.567117"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.569751"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.569751"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.572265"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.572265"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.574517"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.574517"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.576907"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.576907"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.579316"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.579316"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.582364"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.582364"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.585282"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.585282"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.587920"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.587920"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.590349"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.590349"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.592735"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.592735"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.595433"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.595433"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.598813"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.598813"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.602199"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.602199"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.605037"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.605037"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.607609"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.607609"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.610089"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.610089"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.612746"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.612746"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.616300"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.616300"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.619063"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.619063"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.621502"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.621502"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.625070"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.625070"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.627727"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.627727"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.631013"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.631013"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.633434"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.633434"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:33 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (9.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-31 00:02:33 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (9.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.5ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-31 00:02:33 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (13.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.5ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (2.7ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.711944"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.711944"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:33 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:33 -0400  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.6ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.994813"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.994813"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:33.997885"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:33.997885"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.001399"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.001399"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.003919"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.003919"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.006552"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.006552"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.009508"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.009508"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.012085"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.012085"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.014395"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.014395"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.016910"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.016910"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.020034"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.020034"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.023843"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.023843"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.026591"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.026591"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.029298"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.029298"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.032034"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.032034"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.035906"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.035906"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.038414"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.038414"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.041125"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.041125"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.044535"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.044535"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.047005"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.047005"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.050830"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.050830"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.053319"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.053319"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.055644"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.055644"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.058675"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.058675"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.061349"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.061349"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.063816"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.063816"]]  (1.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.067066"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.067066"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.069878"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.069878"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.072376"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.072376"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.074961"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.074961"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.077257"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.077257"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:34.079740"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:34.079740"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:34 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (11.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:34 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-31 00:02:34 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.1ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (20.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 23ms (Views: 21.2ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:34 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.065857"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.065857"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.069225"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.069225"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.071635"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.071635"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.074472"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.074472"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.076861"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.076861"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.080323"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.080323"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.083462"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.083462"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.086051"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.086051"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.088352"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.088352"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.090660"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.090660"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.092997"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.092997"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.095290"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.095290"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.098061"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.098061"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.101203"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.101203"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.103941"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.103941"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.106336"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.106336"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.108591"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.108591"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.110856"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.110856"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.114367"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.114367"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.117139"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.117139"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.119549"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.119549"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.121822"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.121822"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.124245"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.124245"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.126816"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.126816"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.129248"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.129248"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.132184"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.132184"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.135074"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.135074"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.137585"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.137585"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.140498"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.140498"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.143052"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.143052"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.145729"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.145729"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.7ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:35 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-31 00:02:35 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:35 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.5ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.893860"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.893860"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.896494"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.896494"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.900049"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.900049"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.902804"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.902804"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.905511"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.905511"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.907915"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.907915"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.910301"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.910301"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.912803"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.912803"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.916348"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.916348"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.920438"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.920438"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.923105"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.923105"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.925687"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.925687"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.928144"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.928144"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.931198"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.931198"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.934714"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.934714"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.937896"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.937896"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.940392"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.940392"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.942985"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.942985"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.946659"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.946659"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.949259"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.949259"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.951865"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.951865"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.954418"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.954418"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.957050"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.957050"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.959408"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.959408"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.962048"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.962048"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.964528"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.964528"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.969358"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.969358"]]  (5.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.977257"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.977257"]]  (6.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.985630"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.985630"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.990492"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.990492"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:35.996114"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:35.996114"]]  (9.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.6ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.5ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.032995"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.032995"]]  (1.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.036802"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.036802"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.039329"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.039329"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.044585"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.044585"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.049147"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.049147"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.053394"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.053394"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.058004"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.058004"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.062353"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.062353"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.066367"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.066367"]]  (5.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.073656"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.073656"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.078074"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.078074"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.083281"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.083281"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.087836"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.087836"]]  (2.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.091632"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.091632"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.096091"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.096091"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.100417"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.100417"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.105545"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.105545"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.110271"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.110271"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.114768"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.114768"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.119419"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.119419"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.123543"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.123543"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.127947"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.127947"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.132115"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.132115"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.136601"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.136601"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.142113"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.142113"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.146879"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.146879"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.150168"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.150168"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.154553"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.154553"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.159269"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.159269"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.162743"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.162743"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.165853"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.165853"]]  (3.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (10.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:36 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-31 00:02:36 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (15.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:36 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (8.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (2.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.905277"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.905277"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.908638"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.908638"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.911123"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.911123"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.913633"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.913633"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.916380"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.916380"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.920007"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.920007"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.922550"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.922550"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.926807"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.926807"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.930870"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.930870"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.934403"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.934403"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.937047"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.937047"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.939734"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.939734"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.942247"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.942247"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.944619"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.944619"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.947654"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.947654"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.952100"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.952100"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.954573"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.954573"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.957862"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.957862"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.960472"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.960472"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.964974"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.964974"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.967624"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.967624"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.970151"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.970151"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.973862"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.973862"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.978738"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.978738"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.983788"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.983788"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.987748"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.987748"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.990238"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.990238"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.994155"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.994155"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:36.996958"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:36.996958"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:37.002058"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:37.002058"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:37.006432"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:37.006432"]]  (2.6ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-31 00:02:37 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.3ms) Rendered people/index.html.haml within layouts/application (17.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:37 -0400 Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-07-31 00:02:37 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.8ms) Rendered people/index.html.haml within layouts/application (11.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:37 -0400 Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-31 00:02:38 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (6.1ms) Rendered people/index.html.haml within layouts/application (18.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:38 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-07-31 00:02:38 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (14.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:38 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (26.6ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (2.5ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:39.771021"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:39.771021"]]  (2.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:02:39 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (18.3ms) Rendered people/edit.html.haml within layouts/application (20.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 24ms (Views: 22.9ms | ActiveRecord: 0.3ms)  (4.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:39.822067"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:39.822067"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:39 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-31 00:02:40 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (5.9ms) commit transaction Redirected to http://127.0.0.1:53454/people Completed 302 Found in 9ms (ActiveRecord: 6.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:40 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:40 -0400  (0.3ms) SELECT COUNT(*) FROM "people"  (20.4ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (20.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:02:41 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.1ms) Rendered people/new.html.haml within layouts/application (7.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:02:41 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"02", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (1.5ms) Rendered people/_form.html.haml (7.7ms) Rendered people/new.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 15ms (Views: 9.6ms | ActiveRecord: 0.1ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:02:41 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.5ms) Rendered people/new.html.haml within layouts/application (7.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:41.779716"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:41.779716"]]  (2.6ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:02:41 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.7ms) Rendered people/edit.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.2ms)  (3.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:02:41 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.8ms) Rendered people/new.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:41 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-31 00:02:42 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"00", "dob(5i)"=>"02", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:42.644261"], ["dob", "2012-07-31 00:02:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:42.644261"]]  (1.2ms) commit transaction Redirected to http://127.0.0.1:53454/people Completed 302 Found in 6ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (3.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:02:42 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:43.467251"], ["dob", "2012-07-31 04:02:43.466029"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:43.467251"]]  (1.1ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:02:43 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (13.2ms) Rendered people/edit.html.haml within layouts/application (13.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-31 00:02:43 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"00", "dob(5i)"=>"02", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.2ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-31 00:02:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 04:02:43.509535"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 2.0ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.6ms)  (2.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:43.549908"], ["dob", "1984-07-31 04:02:19.765863"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:02:43.549908"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:02:43 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.2ms) Rendered people/edit.html.haml within layouts/application (8.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-31 00:02:43 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"02", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.2ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 04:02:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 04:02:43.574506"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:02:43 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.7ms) Rendered people/edit.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.2ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:02:43 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.5ms) Rendered people/new.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:02:43 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"02", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:43.627422"], ["dob", "2014-07-31 04:02:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 04:02:43.627422"]]  (1.6ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 2.1ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:02:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms)  (1.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:02:43 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.7ms) Rendered people/new.html.haml within layouts/application (9.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:02:43 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"02", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:02:43.674185"], ["dob", "2014-07-31 04:02:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 04:02:43.674185"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:02:43 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.1ms) Rendered people/new.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.938104"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.938104"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.944388"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.944388"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.947997"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.947997"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.950763"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.950763"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.953348"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.953348"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.956098"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.956098"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.958600"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.958600"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.961087"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.961087"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.963563"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.963563"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.966278"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.966278"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.968811"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.968811"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.971255"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.971255"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.974219"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.974219"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.976617"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.976617"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.979140"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.979140"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.981784"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.981784"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.985553"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.985553"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:57.989844"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:57.989844"]]  (13.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.006770"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.006770"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.010908"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.010908"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.015121"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.015121"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.019248"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.019248"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.024260"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.024260"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.028615"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.028615"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.033191"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.033191"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.037811"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.037811"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.041737"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.041737"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.045249"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.045249"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.049572"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.049572"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.052943"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.052943"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.056640"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.056640"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.060378"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.060378"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.063813"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.063813"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.067309"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.067309"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.070940"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.070940"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.073737"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.073737"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.076790"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.076790"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.080569"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.080569"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.084428"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.084428"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.087358"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.087358"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.090104"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.090104"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.093607"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.093607"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.096762"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.096762"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.099576"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.099576"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.103327"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.103327"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.106104"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.106104"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.108906"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.108906"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.111688"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.111688"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.114851"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.114851"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:03:58.117889"], ["dob", "1984-07-31 04:03:55.043634"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:03:58.117889"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:04:00 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (2.7ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (13.9ms) Rendered people/index.html.haml within layouts/application (50.9ms) Rendered application/_flash_messages.html.haml (9.3ms) Completed 200 OK in 85ms (Views: 82.8ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-31 00:04:00 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:04:00 -0400 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 04:18:23.870692"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:23.870692"]]  (1.7ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-31 00:18:23 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.0ms) Rendered credit_card_infos/index.html.haml within layouts/application (19.7ms) Rendered application/_flash_messages.html.haml (10.6ms) Completed 200 OK in 62ms (Views: 60.8ms | ActiveRecord: 0.4ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 04:18:23.965118"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:23.965118"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 04:18:23.967737"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:23.967737"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 04:18:23.970255"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:23.970255"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 04:18:23.973465"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:23.973465"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 04:18:23.976035"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:23.976035"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 04:18:23.978697"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:23.978697"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 04:18:23.982609"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:23.982609"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 04:18:23.985067"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:23.985067"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 04:18:23.987774"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:23.987774"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 04:18:23.990207"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:23.990207"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 04:18:23.994547"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:23.994547"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 04:18:23.997219"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:23.997219"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 04:18:23.999686"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:23.999686"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 04:18:24.003386"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.003386"]]  (4.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 04:18:24.010152"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.010152"]]  (3.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 04:18:24.016649"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.016649"]]  (4.0ms) commit transaction  (0.3ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 04:18:24.024251"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.024251"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 04:18:24.028084"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.028084"]]  (3.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 04:18:24.034389"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.034389"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 04:18:24.037978"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.037978"]]  (4.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 04:18:24.044590"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.044590"]]  (4.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 04:18:24.051584"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.051584"]]  (4.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 04:18:24.057975"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.057975"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 04:18:24.061740"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.061740"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 04:18:24.066448"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.066448"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 04:18:24.071027"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.071027"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 04:18:24.076426"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.076426"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 04:18:24.079581"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.079581"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 04:18:24.082662"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.082662"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 04:18:24.085350"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.085350"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 04:18:24.089516"], ["exp_date", "2016-07-31"], ["secret_code", "2e5d66ad281708e7"], ["updated_at", "2014-07-31 04:18:24.089516"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-31 00:18:24 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.9ms) Rendered credit_card_infos/index.html.haml within layouts/application (8.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-07-31 00:18:24 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.6ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-07-31 00:18:24 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.4ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (1.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 120ms (Views: 115.5ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.153757"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.153757"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.158215"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.158215"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.162041"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.162041"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.166522"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.166522"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.169190"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.169190"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.171767"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.171767"]]  (2.3ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.175547"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.175547"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.180300"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.180300"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.186028"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.186028"]]  (1.2ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.189759"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.189759"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.194574"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.194574"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.198750"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.198750"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.203704"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.203704"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.210229"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.210229"]]  (3.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.217294"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.217294"]]  (4.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.225006"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.225006"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.230158"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.230158"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.235015"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.235015"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.241358"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.241358"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.244488"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.244488"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.249037"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.249037"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.253824"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.253824"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.257748"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.257748"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.261626"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.261626"]]  (3.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.266321"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.266321"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.270543"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.270543"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.274542"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.274542"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.278411"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.278411"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.282299"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.282299"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.286636"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.286636"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.290669"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.290669"]]  (2.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (10.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-31 00:18:29 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (10.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-31 00:18:29 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (12.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.5ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:29.373881"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:29.373881"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (9.2ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 15ms (Views: 12.1ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-31 00:18:39 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:18:39 -0400  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.3ms)  (3.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.533207"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.533207"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.539085"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.539085"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.542063"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.542063"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.544644"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.544644"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.548611"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.548611"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.553644"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.553644"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.557876"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.557876"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.560580"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.560580"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.564883"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.564883"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.568850"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.568850"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.573832"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.573832"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.578338"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.578338"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.582766"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.582766"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.587285"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.587285"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.591611"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.591611"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.596482"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.596482"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.601619"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.601619"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.606756"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.606756"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.610921"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.610921"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.615215"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.615215"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.619376"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.619376"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.623840"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.623840"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.628088"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.628088"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.633495"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.633495"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.637956"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.637956"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.642005"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.642005"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.646590"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.646590"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.651866"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.651866"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.654997"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.654997"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.659505"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.659505"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.663875"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.663875"]]  (2.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (11.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.9ms | ActiveRecord: 0.6ms)  (3.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.6ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.703633"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.703633"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.708624"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.708624"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.713356"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.713356"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.717733"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.717733"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.722083"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.722083"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.727100"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.727100"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.731618"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.731618"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.736909"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.736909"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.741379"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.741379"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.744101"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.744101"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.748468"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.748468"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.752649"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.752649"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.755371"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.755371"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.759617"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.759617"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.763989"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.763989"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.768766"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.768766"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.773407"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.773407"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.777651"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.777651"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.781946"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.781946"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.786817"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.786817"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.791670"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.791670"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.795979"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.795979"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.801012"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.801012"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.805728"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.805728"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.810238"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.810238"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.814539"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.814539"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.819009"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.819009"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.823920"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.823920"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.828288"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.828288"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.832143"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.832143"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:39.836298"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:39.836298"]]  (2.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-31 00:18:40 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.3ms) Rendered people/index.html.haml within layouts/application (15.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.8ms)  (51.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (45.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.829847"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.829847"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.832910"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.832910"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.837202"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.837202"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.841310"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.841310"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.845172"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.845172"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.849152"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.849152"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.852044"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.852044"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.856868"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.856868"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.860863"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.860863"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.865911"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.865911"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.870431"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.870431"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.874677"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.874677"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.878638"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.878638"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.882805"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.882805"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.887226"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.887226"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.892075"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.892075"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.896436"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.896436"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.900939"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.900939"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.905880"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.905880"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.911895"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.911895"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.917265"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.917265"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.920243"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.920243"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.924959"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.924959"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.928989"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.928989"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.933459"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.933459"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.939338"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.939338"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.943649"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.943649"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.947759"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.947759"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.952902"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.952902"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.957536"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.957536"]]  (2.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:40.961391"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:40.961391"]]  (2.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:40 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.9ms) Rendered people/index.html.haml within layouts/application (13.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:18:41 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-31 00:18:41 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (8.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:18:41 -0400  (69.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (71.0ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (4.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.619494"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.619494"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.624739"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.624739"]]  (172.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.800165"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.800165"]]  (10.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.813070"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.813070"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.817786"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.817786"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.823073"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.823073"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.825918"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.825918"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.828404"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.828404"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.830890"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.830890"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.833354"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.833354"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.836019"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.836019"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.838554"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.838554"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.841179"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.841179"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.843610"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.843610"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.847698"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.847698"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.852469"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.852469"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.857170"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.857170"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.860060"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.860060"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.864177"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.864177"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.868159"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.868159"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.872312"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.872312"]]  (2.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.876326"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.876326"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.880769"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.880769"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.885192"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.885192"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.889232"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.889232"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.893341"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.893341"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.897457"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.897457"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.901636"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.901636"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.906203"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.906203"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.910262"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.910262"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:41.914992"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:41.914992"]]  (2.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (11.9ms) Rendered people/index.html.haml within layouts/application (21.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:18:41 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-31 00:18:42 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (1.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (18.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 23ms (Views: 20.2ms | ActiveRecord: 1.1ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:18:42 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.732770"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.732770"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.738090"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.738090"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.742061"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.742061"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.746280"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.746280"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.750871"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.750871"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.755542"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.755542"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.759681"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.759681"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.764065"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.764065"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.768518"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.768518"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.773080"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.773080"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.777097"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.777097"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.781438"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.781438"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.785291"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.785291"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.787952"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.787952"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.792638"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.792638"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.796775"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.796775"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.800928"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.800928"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.805230"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.805230"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.809364"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.809364"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.813641"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.813641"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.818650"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.818650"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.823375"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.823375"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.827589"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.827589"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.831752"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.831752"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.835962"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.835962"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.840243"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.840243"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.844298"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.844298"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.848534"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.848534"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.851485"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.851485"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.856741"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.856741"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:42.860673"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:42.860673"]]  (1.3ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-31 00:18:42 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (13.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:18:42 -0400 Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-07-31 00:18:43 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:18:43 -0400 Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-31 00:18:43 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (5.3ms) Rendered people/index.html.haml within layouts/application (12.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:18:43 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-07-31 00:18:44 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (11.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:18:44 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:45.628222"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:45.628222"]]  (2.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:18:45 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (29.9ms) Rendered people/edit.html.haml within layouts/application (31.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 37ms (Views: 35.7ms | ActiveRecord: 0.2ms)  (3.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:45.691587"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:45.691587"]]  (2.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:18:45 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-31 00:18:46 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (13.5ms) commit transaction Redirected to http://127.0.0.1:58975/people Completed 302 Found in 16ms (ActiveRecord: 14.0ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:46 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:18:46 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:47 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (2.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)  (4.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:47 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:47 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:18:47 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-31 00:18:47 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:18:47 -0400  (3.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:47.951551"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:47.951551"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:47.954496"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:47.954496"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:47.958892"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:47.958892"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:47.963292"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:47.963292"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:47.967516"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:47.967516"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:47.971797"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:47.971797"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:47.976629"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:47.976629"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:47.981297"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:47.981297"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:47.985829"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:47.985829"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:47.990402"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:47.990402"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:47.995404"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:47.995404"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.000955"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.000955"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.007062"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.007062"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.013545"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.013545"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.020438"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.020438"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.025828"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.025828"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.028725"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.028725"]]  (6.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.037861"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.037861"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.042915"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.042915"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.047230"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.047230"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.051456"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.051456"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.054519"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.054519"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.058766"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.058766"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.063103"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.063103"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.067330"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.067330"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.072482"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.072482"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.077328"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.077328"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.081892"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.081892"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.086490"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.086490"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.091333"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.091333"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.096111"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_20@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.096111"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.100920"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.100920"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.106468"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.106468"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.112331"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.112331"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.117264"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.117264"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.122676"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.122676"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.126522"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.126522"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.131736"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.131736"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.137027"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.137027"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.142375"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.142375"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.147094"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.147094"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.152066"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.152066"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.156638"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.156638"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.161328"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.161328"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.165705"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.165705"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.170396"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.170396"]]  (2.7ms) commit transaction  (0.2ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.175100"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.175100"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.179585"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.179585"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.184008"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.184008"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:48.189276"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:48.189276"]]  (2.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:48 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (10.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:18:48 -0400  (7.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (53.8ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (4.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:50.597836"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_190@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:50.597836"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:50.603717"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_191@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:50.603717"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:50.608159"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_192@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:50.608159"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:50.610762"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_193@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:50.610762"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:50.613358"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:50.613358"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:50 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-31 00:18:50 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.4ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:18:50 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.2ms) Rendered people/new.html.haml within layouts/application (9.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:18:50 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"18", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.8ms) Rendered people/_form.html.haml (10.6ms) Rendered people/new.html.haml within layouts/application (10.9ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 19ms (Views: 12.4ms | ActiveRecord: 0.2ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:18:50 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.1ms) Rendered people/new.html.haml within layouts/application (8.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:50.732696"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:50.732696"]]  (3.1ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:18:50 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.6ms) Rendered people/edit.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.2ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:18:50 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.7ms) Rendered people/new.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:18:50 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-31 00:18:51 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"00", "dob(5i)"=>"18", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:51.635454"], ["dob", "2012-07-31 00:18:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:51.635454"]]  (2.5ms) commit transaction Redirected to http://127.0.0.1:58975/people Completed 302 Found in 6ms (ActiveRecord: 2.8ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:51 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:18:51 -0400  (46.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (14.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:52.555377"], ["dob", "2012-07-31 04:18:52.554228"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:52.555377"]]  (10.4ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:18:52 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.9ms) Rendered people/edit.html.haml within layouts/application (8.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-31 00:18:52 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"00", "dob(5i)"=>"18", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-31 00:18:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 04:18:52.601899"]]  (3.6ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 9ms (ActiveRecord: 4.2ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:52 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.4ms)  (3.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:18:52 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.4ms) Rendered people/new.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:18:52 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"18", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:52.662000"], ["dob", "2014-07-31 04:18:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 04:18:52.662000"]]  (2.6ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 3.0ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:18:52 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.4ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:18:52 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.4ms) Rendered people/new.html.haml within layouts/application (7.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:18:52 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"18", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:52.713958"], ["dob", "2014-07-31 04:18:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 04:18:52.713958"]]  (2.9ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 7ms (ActiveRecord: 3.3ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:18:52 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.8ms) Rendered people/new.html.haml within layouts/application (8.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:18:52.750907"], ["dob", "1984-07-31 04:18:20.987073"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:18:52.750907"]]  (2.7ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:18:52 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.5ms) Rendered people/edit.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-31 00:18:52 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"18", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.2ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 04:18:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 04:18:52.776916"]]  (3.0ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 6ms (ActiveRecord: 3.5ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:18:52 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.5ms) Rendered people/edit.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.1ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:21:52 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (38.9ms) Rendered people/new.html.haml within layouts/application (43.7ms) Rendered application/_flash_messages.html.haml (9.0ms) Completed 200 OK in 79ms (Views: 74.1ms | ActiveRecord: 0.5ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:21:52 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"21", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (3.9ms) Rendered people/_form.html.haml (16.6ms) Rendered people/new.html.haml within layouts/application (17.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 29ms (Views: 19.6ms | ActiveRecord: 0.1ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:21:52 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.4ms) Rendered people/new.html.haml within layouts/application (8.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:21:52 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"21", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:52.378485"], ["dob", "2014-07-31 04:21:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 04:21:52.378485"]]  (1.6ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 8ms (ActiveRecord: 2.2ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:21:52 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.6ms) Rendered people/new.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)  (2.0ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:52.410626"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:52.410626"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:21:52 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.1ms) Rendered people/edit.html.haml within layouts/application (7.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 9.5ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-31 00:21:52 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"21", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 04:21:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 04:21:52.439525"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.5ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:21:52 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.3ms) Rendered people/edit.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.1ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:21:52 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.2ms) Rendered people/new.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:21:52 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"21", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:52.487441"], ["dob", "2014-07-31 04:21:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 04:21:52.487441"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:21:52 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.7ms) Rendered application/_search_form.html.haml (1.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (16.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.4ms)  (1.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:52.523513"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:52.523513"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:21:52 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.8ms) Rendered people/edit.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:21:52 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.6ms) Rendered people/new.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:52.566552"], ["dob", "2012-07-31 04:21:52.565216"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:52.566552"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:21:52 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.2ms) Rendered people/edit.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-31 00:21:52 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"00", "dob(5i)"=>"21", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-31 00:21:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 04:21:52.604142"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:21:52 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.3ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:21:55 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (13.2ms) Rendered people/new.html.haml within layouts/application (13.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-31 00:21:55 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:21:55 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-31 00:21:56 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"00", "dob(5i)"=>"21", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.4ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:56.465215"], ["dob", "2012-07-31 00:21:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:56.465215"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:59624/people Completed 302 Found in 6ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:21:56 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (6.3ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.6ms)  (0.9ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:21:57 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:57.473764"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:57.473764"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:21:57 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.5ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-31 00:21:58 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (0.8ms) commit transaction Redirected to http://127.0.0.1:59624/people Completed 302 Found in 4ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:21:58 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.2ms)  (0.2ms) SELECT COUNT(*) FROM "people"  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.271282"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.271282"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:21:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:21:59 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.3ms) Rendered people/edit.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:21:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:21:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.2ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-31 00:21:59 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:21:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.8ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.780585"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_6@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.780585"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.783434"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_7@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.783434"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.786769"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_8@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.786769"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.789431"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_9@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.789431"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.792054"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.792054"]]  (1.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:21:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-31 00:21:59 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.831098"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.831098"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.833974"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.833974"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.836879"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.836879"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.839537"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.839537"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.842080"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.842080"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.844745"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.844745"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.847707"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.847707"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.850953"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.850953"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.853857"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.853857"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.856549"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.856549"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.859121"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.859121"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.861831"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.861831"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.864903"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.864903"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.867704"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.867704"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.870618"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.870618"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.873286"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.873286"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.875885"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.875885"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.878613"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.878613"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.881553"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.881553"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.884221"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.884221"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.886923"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.886923"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.889572"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.889572"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.892075"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.892075"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.894718"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.894718"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.897184"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.897184"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.900270"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.900270"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.903235"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.903235"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.906642"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.906642"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.909274"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.909274"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.911821"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.911821"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.914350"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.914350"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.917785"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.917785"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.920791"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.920791"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.923724"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.923724"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.926465"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.926465"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.930192"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.930192"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.933487"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.933487"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.936664"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.936664"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.939602"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.939602"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.942496"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.942496"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.945339"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.945339"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.948262"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.948262"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.951264"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.951264"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.954170"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.954170"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.958086"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.958086"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.961037"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.961037"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.963707"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.963707"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.966543"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.966543"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.969949"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.969949"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:21:59.973499"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:21:59.973499"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:21:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.0ms) Rendered people/index.html.haml within layouts/application (14.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 15.5ms | ActiveRecord: 0.9ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-31 00:22:00 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.3ms) Rendered people/index.html.haml within layouts/application (14.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 1.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.171722"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.171722"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.174343"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.174343"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.176785"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.176785"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.181040"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.181040"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.184804"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.184804"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.187333"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.187333"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.190101"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.190101"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.192912"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.192912"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.195112"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.195112"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.197718"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.197718"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.200258"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.200258"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.202836"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.202836"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.205488"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.205488"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.207960"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.207960"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.210395"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.210395"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.212821"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.212821"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.215640"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.215640"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.218422"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.218422"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.220794"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.220794"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.223901"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.223901"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.226199"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.226199"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.228539"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.228539"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.231232"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.231232"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.234323"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.234323"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.236851"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.236851"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.239617"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.239617"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.241904"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.241904"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.244217"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.244217"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.247636"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.247636"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.252303"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.252303"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:01.257750"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:01.257750"]]  (1.7ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-31 00:22:01 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (5.4ms) Rendered people/index.html.haml within layouts/application (16.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 21ms (Views: 18.7ms | ActiveRecord: 0.9ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-31 00:22:01 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.6ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-31 00:22:02 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (12.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 0.8ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-31 00:22:03 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (12.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 17ms (Views: 14.6ms | ActiveRecord: 0.8ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (2.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.5ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:03.982942"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:03.982942"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:03.986695"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:03.986695"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:03.989813"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:03.989813"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:03.993424"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:03.993424"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:03.995907"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:03.995907"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:03.999486"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:03.999486"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.003515"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.003515"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.006306"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.006306"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.008973"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.008973"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.011695"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.011695"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.014862"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.014862"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.019169"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.019169"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.022127"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.022127"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.024881"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.024881"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.027685"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.027685"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.031057"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.031057"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.035940"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.035940"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.038603"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.038603"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.041226"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.041226"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.045095"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.045095"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.049431"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.049431"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.052662"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.052662"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.056086"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.056086"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.058998"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.058998"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.061710"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.061710"]]  (1.0ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.065155"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.065155"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.068778"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.068778"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.071647"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.071647"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.074263"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.074263"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.077098"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.077098"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:04.079737"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:04.079737"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:22:04 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (11.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-31 00:22:04 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (19.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 24ms (Views: 20.6ms | ActiveRecord: 1.4ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.041517"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.041517"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.044364"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.044364"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.047511"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.047511"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.050410"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.050410"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.052908"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.052908"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.055336"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.055336"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.057825"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.057825"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.060243"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.060243"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.062644"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.062644"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.065938"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.065938"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.069286"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.069286"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.072185"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.072185"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.074954"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.074954"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.077571"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.077571"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.080469"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.080469"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.083000"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.083000"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.087267"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.087267"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.089959"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.089959"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.092476"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.092476"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.094924"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.094924"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.098077"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.098077"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.101106"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.101106"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.103808"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.103808"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.106449"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.106449"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.109325"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.109325"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.111782"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.111782"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.114176"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.114176"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.117173"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.117173"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.120614"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.120614"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.124667"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.124667"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.128218"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.128218"]]  (1.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:22:05 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (13.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-31 00:22:05 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (15.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 1.0ms)  (2.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.5ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.867157"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.867157"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.869845"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.869845"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.872526"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.872526"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.875308"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.875308"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.878322"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.878322"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.880856"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.880856"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.883311"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.883311"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.885656"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.885656"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.887990"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.887990"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.890358"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.890358"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.892867"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.892867"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.895583"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.895583"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.898647"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.898647"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.902780"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.902780"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.905980"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.905980"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.908323"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.908323"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.911005"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.911005"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.913302"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.913302"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.916228"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.916228"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.919049"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.919049"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.921544"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.921544"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.923921"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.923921"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.926375"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.926375"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.928804"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.928804"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.936705"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.936705"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.940917"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.940917"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.943714"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.943714"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.946159"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.946159"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.948723"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.948723"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.951372"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.951372"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:05.954089"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:05.954089"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:22:05 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.3ms) Rendered people/index.html.haml within layouts/application (17.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.8ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-31 00:22:06 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.5ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 12.9ms | ActiveRecord: 0.6ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.441282"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.441282"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.443842"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.443842"]]  (1.3ms) commit transaction  (0.2ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.446997"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.446997"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.449547"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.449547"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.451891"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.451891"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.454320"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.454320"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.456896"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.456896"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.459285"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.459285"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.462420"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.462420"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.465974"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.465974"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.469191"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.469191"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.472106"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.472106"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.475817"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.475817"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.479066"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.479066"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.482453"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.482453"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.485704"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.485704"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.488283"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.488283"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.490646"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.490646"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.493053"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.493053"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.496107"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.496107"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.498840"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.498840"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.502524"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.502524"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.505001"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.505001"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.507454"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.507454"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.509887"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.509887"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.512698"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.512698"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.516071"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.516071"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.519309"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.519309"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.522331"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.522331"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.525237"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.525237"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.528817"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.528817"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:22:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (14.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.7ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.564917"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.564917"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:22:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.4ms)  (3.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:22:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.2ms)  (2.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.893804"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.893804"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.896556"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.896556"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.899301"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.899301"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.902278"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.902278"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.904680"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.904680"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.907358"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.907358"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.909893"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.909893"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.912533"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.912533"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.915024"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.915024"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.917722"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.917722"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.920389"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.920389"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.922796"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.922796"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.925563"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.925563"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.928259"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.928259"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.931241"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.931241"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.934873"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.934873"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.937589"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.937589"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.940303"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.940303"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.942964"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.942964"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.945818"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.945818"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.948308"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.948308"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.950680"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.950680"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.954346"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.954346"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.957165"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.957165"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.959826"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.959826"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.962701"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.962701"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.965764"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.965764"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.968674"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.968674"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.971652"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.971652"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.974691"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.974691"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:22:06.978094"], ["dob", "1984-07-31 04:21:49.131197"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:22:06.978094"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:22:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (13.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.7ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-31 00:22:07 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (14.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-31 00:22:07 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (15.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.6ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.6ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 04:22:11.793423"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.793423"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 04:22:11.797863"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.797863"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 04:22:11.800695"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.800695"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 04:22:11.803515"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.803515"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 04:22:11.806045"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.806045"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 04:22:11.808497"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.808497"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 04:22:11.811390"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.811390"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 04:22:11.813933"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.813933"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 04:22:11.817247"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.817247"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 04:22:11.820058"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.820058"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 04:22:11.822703"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.822703"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 04:22:11.825388"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.825388"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 04:22:11.827722"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.827722"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 04:22:11.830336"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.830336"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 04:22:11.833235"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.833235"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 04:22:11.836712"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.836712"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 04:22:11.839489"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.839489"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 04:22:11.842430"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.842430"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 04:22:11.845616"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.845616"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 04:22:11.848886"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.848886"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 04:22:11.851934"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.851934"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 04:22:11.854905"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.854905"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 04:22:11.857763"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.857763"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 04:22:11.861230"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.861230"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 04:22:11.864057"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.864057"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 04:22:11.866768"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.866768"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 04:22:11.869468"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.869468"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 04:22:11.872467"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.872467"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 04:22:11.876369"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.876369"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 04:22:11.879995"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.879995"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 04:22:11.883305"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.883305"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-31 00:22:11 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.4ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.9ms) Rendered credit_card_infos/index.html.haml within layouts/application (12.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 34ms (Views: 31.8ms | ActiveRecord: 0.6ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-07-31 00:22:11 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.3ms) Rendered credit_card_infos/index.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-07-31 00:22:11 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.4ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 04:22:11.973358"], ["exp_date", "2016-07-31"], ["secret_code", "833847def29737ac"], ["updated_at", "2014-07-31 04:22:11.973358"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-31 00:22:11 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (11.3ms) Rendered credit_card_infos/index.html.haml within layouts/application (12.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.4ms) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (92.3ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (4.8ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:27:15 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (28.3ms) Rendered people/new.html.haml within layouts/application (33.2ms) Rendered application/_flash_messages.html.haml (9.0ms) Completed 200 OK in 70ms (Views: 67.0ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:27:15 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"27", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.5ms) Rendered people/_form.html.haml (7.0ms) Rendered people/new.html.haml within layouts/application (7.4ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 74ms (Views: 9.0ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:27:15 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.8ms) Rendered people/new.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:27:15 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"27", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:15.351621"], ["dob", "2014-07-31 04:27:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 04:27:15.351621"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 8ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.6ms) Rendered application/_search_form.html.haml (1.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.7ms) Rendered people/index.html.haml within layouts/application (16.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.4ms)  (2.0ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:27:15 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.6ms) Rendered people/new.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:27:15 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"27", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:15.411579"], ["dob", "2014-07-31 04:27:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 04:27:15.411579"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.2ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:27:15 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.8ms) Rendered people/new.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)  (2.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:15.437384"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:15.437384"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:27:15 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.0ms) Rendered people/edit.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-31 00:27:15 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"27", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 04:27:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 04:27:15.461277"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.6ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:27:15 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (13.0ms) Rendered people/edit.html.haml within layouts/application (13.4ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.1ms)  (6.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:15.521222"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:15.521222"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:27:15 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (10.9ms) Rendered people/edit.html.haml within layouts/application (11.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:27:15 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.8ms) Rendered people/new.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:15.571895"], ["dob", "2012-07-31 04:27:15.570912"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:15.571895"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:27:15 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.2ms) Rendered people/edit.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-31 00:27:15 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"00", "dob(5i)"=>"27", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.2ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-31 00:27:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 04:27:15.606623"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.3ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:27:18 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (13.5ms) Rendered people/new.html.haml within layouts/application (14.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-31 00:27:18 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:18 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-31 00:27:19 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"00", "dob(5i)"=>"27", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:19.475338"], ["dob", "2012-07-31 00:27:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:19.475338"]]  (0.8ms) commit transaction Redirected to http://127.0.0.1:62237/people Completed 302 Found in 5ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 11ms (Views: 8.4ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:19 -0400  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.496402"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.496402"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.499128"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.499128"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.501810"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.501810"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.505874"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.505874"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.509038"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.509038"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.511908"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.511908"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.514742"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.514742"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.517234"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.517234"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.519540"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.519540"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.521869"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.521869"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.525301"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.525301"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.527943"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.527943"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.530441"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.530441"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.532724"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.532724"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.535171"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.535171"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.537558"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.537558"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.539958"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.539958"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.542583"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.542583"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.544961"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.544961"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.548575"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.548575"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.550998"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.550998"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.553386"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.553386"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.555903"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.555903"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.558485"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.558485"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.561185"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.561185"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.563756"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.563756"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.566246"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.566246"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.568729"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.568729"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.572461"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.572461"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.575157"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.575157"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:20.577775"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:20.577775"]]  (1.6ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-31 00:27:20 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 12.6ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:20 -0400 Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-31 00:27:21 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (9.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:21 -0400 Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-31 00:27:21 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:21 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-31 00:27:22 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.7ms) Rendered people/index.html.haml within layouts/application (12.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:22 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.850998"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.850998"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.853735"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.853735"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.856340"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.856340"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.859134"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.859134"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.862607"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.862607"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.865105"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.865105"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.867880"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.867880"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.870531"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.870531"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.873941"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.873941"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.877743"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.877743"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.880336"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.880336"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.883095"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.883095"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.885821"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.885821"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.888843"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.888843"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.891906"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.891906"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.895349"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.895349"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.898220"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.898220"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.900626"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.900626"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.903123"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.903123"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.905853"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.905853"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.908651"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.908651"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.912147"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.912147"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.914547"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.914547"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.917102"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.917102"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.919878"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.919878"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.922853"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.922853"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.925992"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.925992"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.929208"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.929208"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.931744"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.931744"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.934335"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.934335"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:23.937195"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:23.937195"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:23 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:23 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-31 00:27:24 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (19.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 24ms (Views: 20.6ms | ActiveRecord: 1.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:24 -0400  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.907325"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.907325"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.910017"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.910017"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.912484"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.912484"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.914678"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.914678"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.917001"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.917001"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.919391"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.919391"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.921785"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.921785"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.925311"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.925311"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.927941"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.927941"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.930770"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.930770"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.932985"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.932985"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.935534"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.935534"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.938204"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.938204"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.940825"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.940825"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.943943"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.943943"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.947361"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.947361"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.950729"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.950729"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.953359"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.953359"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.955928"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.955928"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.958815"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.958815"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.960944"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.960944"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.963866"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.963866"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.966315"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.966315"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.969125"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.969125"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.971864"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.971864"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.975927"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.975927"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.978984"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.978984"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.981515"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.981515"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.984031"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.984031"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.986317"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.986317"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:24.988793"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:24.988793"]]  (1.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:24 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (9.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.5ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.015484"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.015484"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.018006"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.018006"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.021525"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.021525"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.024307"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.024307"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.026689"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.026689"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.029245"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.029245"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.032205"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.032205"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.035873"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.035873"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.039069"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.039069"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.041748"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.041748"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.044337"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.044337"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.047180"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.047180"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.049504"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.049504"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.051799"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.051799"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.054715"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.054715"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.057204"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.057204"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.060563"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.060563"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.063135"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.063135"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.065359"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.065359"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.067763"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.067763"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.070279"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.070279"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.072872"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.072872"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.076237"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.076237"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.079220"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.079220"]]  (7.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.088415"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.088415"]]  (9.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.100139"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.100139"]]  (8.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.110258"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.110258"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.113815"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.113815"]]  (9.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.124963"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.124963"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.130027"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.130027"]]  (2.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.133848"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.133848"]]  (1.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:25 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (12.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:25 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-31 00:27:25 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (14.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:25 -0400  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (19.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.853963"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.853963"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.857055"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.857055"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.860051"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.860051"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.864306"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.864306"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.867748"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.867748"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.870689"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.870689"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.873816"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.873816"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.878613"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.878613"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.881684"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.881684"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.884227"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.884227"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.887311"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.887311"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.892261"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.892261"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.897678"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.897678"]]  (4.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.904629"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.904629"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.908510"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.908510"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.913288"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.913288"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.916568"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.916568"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.920958"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.920958"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.925257"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.925257"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.930785"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.930785"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.933891"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.933891"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.937932"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.937932"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.941300"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.941300"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.945958"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.945958"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.948791"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.948791"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.951409"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.951409"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.954457"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.954457"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.959048"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.959048"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.961909"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.961909"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.966473"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.966473"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:25.970655"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:25.970655"]]  (3.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:25 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.5ms) Rendered people/index.html.haml within layouts/application (16.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 21ms (Views: 18.7ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:26 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-31 00:27:26 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (11.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:26 -0400  (7.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (34.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.579158"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.579158"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.583648"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.583648"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.588185"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.588185"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.592331"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.592331"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.597133"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.597133"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.599609"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.599609"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.603161"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.603161"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.608548"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.608548"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.615100"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.615100"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.619270"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.619270"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.622117"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.622117"]]  (2.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.625801"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.625801"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.629947"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.629947"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.633891"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.633891"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.638032"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.638032"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.642090"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.642090"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.647098"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.647098"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.651037"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.651037"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.655046"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.655046"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.659089"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.659089"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.661709"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.661709"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.665686"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.665686"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.669618"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.669618"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.673933"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.673933"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.679006"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.679006"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.683171"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.683171"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.687036"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.687036"]]  (3.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.691512"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.691512"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.696572"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.696572"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.700604"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.700604"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.704924"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.704924"]]  (2.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:26 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.7ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-31 00:27:26 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (13.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-31 00:27:26 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (13.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.5ms)  (4.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:26.800887"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_190@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:26.800887"]]  (2.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:26 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:26 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:27 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (2.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:27.134633"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_191@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:27.134633"]]  (2.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:27 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.1ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:27 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-31 00:27:27 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (24.8ms) commit transaction Redirected to http://127.0.0.1:62237/people Completed 302 Found in 29ms (ActiveRecord: 25.5ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:27 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.8ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:27 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (31.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (50.2ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (11.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.068176"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_192@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.068176"]]  (8.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:27:29 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.6ms) Rendered people/edit.html.haml within layouts/application (8.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.1ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.4ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms)  (3.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:29 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-31 00:27:29 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:29 -0400  (139.3ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.4ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.792035"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_193@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.792035"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.795555"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_194@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.795555"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.798702"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_195@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.798702"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.801454"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoe_196@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.801454"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.806452"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.806452"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-31 00:27:29 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.844891"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.844891"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.849648"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.849648"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.853950"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.853950"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.858225"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.858225"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.862666"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.862666"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.867048"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.867048"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.871739"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.871739"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.876685"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.876685"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.881507"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.881507"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.885931"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.885931"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.890419"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.890419"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.895663"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.895663"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.900349"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.900349"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.904954"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.904954"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.909027"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.909027"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.913473"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.913473"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.917758"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.917758"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.922130"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.922130"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.926676"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.926676"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.929648"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.929648"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.933775"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.933775"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.938125"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_31@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.938125"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.942379"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.942379"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.947661"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.947661"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.951928"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.951928"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.956294"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.956294"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.960749"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.960749"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.965066"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.965066"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.969838"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.969838"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.974300"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.974300"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.979795"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.979795"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.984440"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.984440"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.989044"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.989044"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.993959"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.993959"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:29.996809"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:29.996809"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:30.001261"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:30.001261"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:30.006113"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:30.006113"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:30.009973"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:30.009973"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:30.014753"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:30.014753"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:30.019252"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:30.019252"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:30.023706"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:30.023706"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:30.028588"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:30.028588"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:30.033040"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:30.033040"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:30.037538"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:30.037538"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:30.042072"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:30.042072"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:30.046617"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:30.046617"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:30.051055"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:30.051055"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:30.055546"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:30.055546"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:30.059949"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:30.059949"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:27:30.064987"], ["dob", "1984-07-31 04:27:12.109139"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:27:30.064987"]]  (2.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:27:30 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.4ms) Rendered people/index.html.haml within layouts/application (15.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:30 -0400 Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-31 00:27:30 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (20.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 29ms (Views: 21.0ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:27:30 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------- ControllerScaffoldingTest: test_truth -------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (37.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 04:27:37.144286"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.144286"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 04:27:37.148469"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.148469"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 04:27:37.154381"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.154381"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 04:27:37.157752"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.157752"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (5.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 04:27:37.163895"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.163895"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 04:27:37.171945"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.171945"]]  (7.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 04:27:37.181435"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.181435"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 04:27:37.184263"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.184263"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 04:27:37.189213"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.189213"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (4.8ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 04:27:37.193258"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.193258"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 04:27:37.201326"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.201326"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 04:27:37.206270"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.206270"]]  (3.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 04:27:37.212423"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.212423"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 04:27:37.218104"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.218104"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 04:27:37.223886"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.223886"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 04:27:37.226971"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.226971"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 04:27:37.230872"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.230872"]]  (2.6ms) commit transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 04:27:37.235200"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.235200"]]  (1.2ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 04:27:37.238559"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.238559"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 04:27:37.244187"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.244187"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 04:27:37.248937"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.248937"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 04:27:37.251992"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.251992"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 04:27:37.256173"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.256173"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 04:27:37.262428"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.262428"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 04:27:37.266808"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.266808"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 04:27:37.271600"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.271600"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 04:27:37.277606"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.277606"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 04:27:37.282682"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.282682"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 04:27:37.287681"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.287681"]]  (4.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 04:27:37.293694"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.293694"]]  (18.7ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 04:27:37.314476"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.314476"]]  (4.6ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-31 00:27:37 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.4ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (5.9ms) Rendered credit_card_infos/index.html.haml within layouts/application (16.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 43ms (Views: 41.1ms | ActiveRecord: 0.7ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-07-31 00:27:37 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-07-31 00:27:37 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 04:27:37.417592"], ["exp_date", "2016-07-31"], ["secret_code", "041ec838aa065705"], ["updated_at", "2014-07-31 04:27:37.417592"]]  (3.0ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-31 00:27:37 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.6ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 04:38:00.521496"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.521496"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-31 00:38:00 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (21.1ms) Rendered application/_flash_messages.html.haml (10.2ms) Completed 200 OK in 50ms (Views: 48.6ms | ActiveRecord: 0.5ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 04:38:00.601501"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.601501"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 04:38:00.604896"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.604896"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 04:38:00.607612"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.607612"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 04:38:00.610130"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.610130"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 04:38:00.612535"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.612535"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 04:38:00.614918"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.614918"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 04:38:00.617196"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.617196"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 04:38:00.619867"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.619867"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 04:38:00.622295"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.622295"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 04:38:00.624674"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.624674"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 04:38:00.626869"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.626869"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 04:38:00.629271"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.629271"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 04:38:00.632078"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.632078"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 04:38:00.634852"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.634852"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 04:38:00.638307"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.638307"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 04:38:00.641357"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.641357"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 04:38:00.643853"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.643853"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 04:38:00.646152"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.646152"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 04:38:00.648535"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.648535"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 04:38:00.652224"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.652224"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 04:38:00.655694"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.655694"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 04:38:00.658482"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.658482"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 04:38:00.662060"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.662060"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 04:38:00.665435"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.665435"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 04:38:00.669101"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.669101"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 04:38:00.672161"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.672161"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 04:38:00.675269"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.675269"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 04:38:00.677907"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.677907"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 04:38:00.680527"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.680527"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 04:38:00.683689"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.683689"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 04:38:00.686607"], ["exp_date", "2016-07-31"], ["secret_code", "7b16eb672caac910"], ["updated_at", "2014-07-31 04:38:00.686607"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-31 00:38:00 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-07-31 00:38:00 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.6ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-07-31 00:38:00 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.5ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:05 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (1.6ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (12.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 111ms (Views: 105.5ms | ActiveRecord: 0.6ms)  (1.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 8.5ms | ActiveRecord: 0.5ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-31 00:38:08 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:08 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-31 00:38:08 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:08 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:09 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:09 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.059180"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.059180"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.062733"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.062733"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.065917"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.065917"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.068666"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.068666"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.071594"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.071594"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.074287"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.074287"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.076958"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.076958"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.080794"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.080794"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.083714"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.083714"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.086814"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.086814"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.090563"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.090563"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.093417"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.093417"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.096794"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.096794"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.099903"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.099903"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.102939"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.102939"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.105744"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.105744"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.108422"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.108422"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.111124"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.111124"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.114856"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.114856"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.118302"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.118302"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.121293"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.121293"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.123967"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.123967"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.127502"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.127502"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.130869"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.130869"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.133985"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.133985"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.137097"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.137097"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.139718"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.139718"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.143418"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.143418"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.145873"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.145873"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.148509"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.148509"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.151469"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.151469"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.154666"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.154666"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.158674"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.158674"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.161836"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.161836"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.164768"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.164768"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.168409"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.168409"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.171761"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.171761"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.175950"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.175950"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.179533"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.179533"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.183390"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.183390"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.187839"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.187839"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.190950"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.190950"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.195065"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.195065"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.198699"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.198699"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.202478"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.202478"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.206032"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.206032"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.209653"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.209653"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.212921"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.212921"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.216413"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.216413"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:09.220576"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:09.220576"]]  (2.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:09 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.0ms) Rendered people/index.html.haml within layouts/application (16.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 1.1ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:09 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.518842"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_1@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.518842"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.522045"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_2@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.522045"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.524623"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_3@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.524623"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.527143"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_4@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.527143"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.529681"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.529681"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (5.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-31 00:38:11 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (5.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.4ms)  (2.1ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.3ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.647857"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_5@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.647857"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.650742"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_6@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.650742"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.653623"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_7@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.653623"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.656152"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.656152"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.658873"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.658873"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.661943"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.661943"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.664909"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.664909"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.667963"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.667963"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.671585"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.671585"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.673948"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.673948"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.677189"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.677189"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.679610"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.679610"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.683032"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.683032"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.685952"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.685952"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.688845"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.688845"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.691467"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.691467"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.694055"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.694055"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.696690"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.696690"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.699343"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.699343"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.701935"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.701935"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.704536"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.704536"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.707032"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.707032"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.709428"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.709428"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.711865"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.711865"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.714220"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.714220"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.717070"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.717070"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.720029"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.720029"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.723826"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.723826"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.727391"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.727391"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.729844"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.729844"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.732338"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.732338"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (9.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.5ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-31 00:38:11 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (10.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.5ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-31 00:38:11 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (13.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.5ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:11.813377"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:11.813377"]]  (1.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:11 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.094471"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.094471"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.097564"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.097564"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.100404"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.100404"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.103871"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.103871"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.106427"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.106427"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.109305"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.109305"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.111687"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.111687"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.115208"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.115208"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.117844"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.117844"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.120220"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.120220"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.122653"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.122653"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.125411"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.125411"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.127777"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.127777"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.130342"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.130342"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.132806"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.132806"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.135439"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.135439"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.137970"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.137970"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.140668"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.140668"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.143747"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.143747"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.146136"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.146136"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.148394"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.148394"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.150932"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.150932"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.154153"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.154153"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.157725"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.157725"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.160195"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.160195"]]  (1.0ms) commit transaction  (0.2ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.163207"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.163207"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.165838"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.165838"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.168501"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.168501"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.171807"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.171807"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.174523"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.174523"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.177016"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.177016"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:12 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (12.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:12 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-31 00:38:12 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.7ms) Rendered people/index.html.haml within layouts/application (11.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:12 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.642645"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.642645"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.646439"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.646439"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.649333"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.649333"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.652829"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.652829"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.655690"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.655690"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.658345"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.658345"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.660734"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.660734"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.663075"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.663075"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.665384"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.665384"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.668087"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.668087"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.670946"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.670946"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.673570"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.673570"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.675820"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.675820"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.678974"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.678974"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.681892"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.681892"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.684271"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.684271"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.687633"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.687633"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.690287"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.690287"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.692824"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.692824"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.695254"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.695254"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.697493"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.697493"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.699844"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.699844"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.702405"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.702405"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.705449"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.705449"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.707851"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.707851"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.710936"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.710936"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.713449"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.713449"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.716232"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.716232"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.719122"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.719122"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.721706"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.721706"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.725276"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.725276"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:12 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (9.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.6ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.752656"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.752656"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.755646"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.755646"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.758890"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.758890"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.761392"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.761392"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.764568"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.764568"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.768092"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.768092"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.770907"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.770907"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.773375"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.773375"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.775771"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.775771"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.778205"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.778205"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.780865"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.780865"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.783442"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.783442"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.785936"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.785936"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.788226"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.788226"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.790822"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.790822"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.794338"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.794338"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.796835"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.796835"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.799644"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.799644"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.802814"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.802814"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.805443"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.805443"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.807864"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.807864"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.810864"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.810864"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.814084"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.814084"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.816565"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.816565"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.819198"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.819198"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.822692"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.822692"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.825316"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.825316"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.828003"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.828003"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.831403"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.831403"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.834728"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.834728"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:12.838228"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:12.838228"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:12 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.5ms) Rendered people/index.html.haml within layouts/application (10.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:12 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-31 00:38:13 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (21.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:13 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.556782"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.556782"]]  (2.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.560681"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.560681"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.563374"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.563374"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.565976"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.565976"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.569548"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.569548"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.572218"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.572218"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.574716"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.574716"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.577126"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.577126"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.579839"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.579839"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.583319"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.583319"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.586865"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.586865"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.589649"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.589649"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.592221"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.592221"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.595704"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.595704"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.598217"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.598217"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.601285"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.601285"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.604237"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.604237"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.606775"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.606775"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.609151"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.609151"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.611987"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.611987"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.614681"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.614681"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.617253"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.617253"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.619585"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.619585"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.622655"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.622655"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.625177"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.625177"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.628154"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.628154"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.630597"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.630597"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.632967"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.632967"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.635785"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.635785"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.638440"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.638440"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:13.641116"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:13.641116"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (12.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:13 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-31 00:38:13 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.1ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (19.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:13 -0400  (2.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.5ms) DELETE FROM "people";  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.469490"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.469490"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.473299"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.473299"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.476018"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.476018"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.478496"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.478496"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.480896"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.480896"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.484024"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.484024"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.486741"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.486741"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.489446"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.489446"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.491777"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.491777"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.495000"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.495000"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.497571"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.497571"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.500343"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.500343"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.503240"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.503240"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.506124"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.506124"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.508596"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.508596"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.511670"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.511670"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.514102"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.514102"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.516718"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.516718"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.519253"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.519253"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.521963"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.521963"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.524657"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.524657"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.527144"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.527144"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.529523"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.529523"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.532096"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.532096"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.534742"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.534742"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.537448"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.537448"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.539816"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.539816"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.542234"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.542234"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.545258"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.545258"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.548248"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.548248"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:14.551304"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:14.551304"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-31 00:38:14 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (12.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:14 -0400 Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-07-31 00:38:15 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.4ms) Rendered people/index.html.haml within layouts/application (10.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:15 -0400 Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-31 00:38:15 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.3ms) Rendered people/index.html.haml within layouts/application (12.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:15 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-07-31 00:38:16 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (14.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:16 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (2.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:17.174092"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:17.174092"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:38:17 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (17.5ms) Rendered people/edit.html.haml within layouts/application (19.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:17.219493"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:17.219493"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.2ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:17 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-31 00:38:18 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.2ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.4ms) commit transaction Redirected to http://127.0.0.1:63598/people Completed 302 Found in 4ms (ActiveRecord: 1.8ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:18 -0400  (0.3ms) SELECT COUNT(*) FROM "people"  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:38:19 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.1ms) Rendered people/new.html.haml within layouts/application (7.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:38:19 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"38", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (2.1ms) Rendered people/_form.html.haml (7.1ms) Rendered people/new.html.haml within layouts/application (7.3ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 15ms (Views: 8.7ms | ActiveRecord: 0.1ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:38:19 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.3ms) Rendered people/new.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:19.263574"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:19.263574"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:38:19 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.5ms) Rendered people/edit.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:38:19 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.5ms) Rendered people/new.html.haml within layouts/application (7.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:19 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-31 00:38:20 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"00", "dob(5i)"=>"38", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:20.211692"], ["dob", "2012-07-31 00:38:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:20.211692"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:63598/people Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:38:20 -0400  (3.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:21.034001"], ["dob", "2012-07-31 04:38:21.032952"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:21.034001"]]  (3.5ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:38:21 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (9.7ms) Rendered people/edit.html.haml within layouts/application (10.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-31 00:38:21 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"00", "dob(5i)"=>"38", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.2ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-31 00:38:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 04:38:21.080085"]]  (1.2ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 1.8ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:21 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.3ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:21.109355"], ["dob", "1984-07-31 04:37:57.594950"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:38:21.109355"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:38:21 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (9.1ms) Rendered people/edit.html.haml within layouts/application (9.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-31 00:38:21 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"37", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 04:37:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 04:38:21.139789"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:38:21 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.4ms) Rendered people/edit.html.haml within layouts/application (7.8ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.1ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:38:21 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.0ms) Rendered people/new.html.haml within layouts/application (7.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:38:21 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"38", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:21.189252"], ["dob", "2014-07-31 04:38:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 04:38:21.189252"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:38:21 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (4.5ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.4ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:38:21 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.3ms) Rendered people/new.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:38:21 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"38", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:38:21.231283"], ["dob", "2014-07-31 04:38:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 04:38:21.231283"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:38:21 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.5ms) Rendered people/new.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:40:02 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (27.4ms) Rendered people/new.html.haml within layouts/application (31.8ms) Rendered application/_flash_messages.html.haml (9.9ms) Completed 200 OK in 64ms (Views: 61.3ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:40:02 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"40", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.7ms) Rendered people/_form.html.haml (9.1ms) Rendered people/new.html.haml within layouts/application (9.4ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 17ms (Views: 10.9ms | ActiveRecord: 0.2ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:02.841628"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:02.841628"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:40:02 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (66.3ms) Rendered people/edit.html.haml within layouts/application (67.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 72ms (Views: 69.7ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-31 00:40:02 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"39", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 04:39:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 04:40:02.929200"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.7ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:40:02 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.0ms) Rendered people/edit.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.1ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:40:02 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.5ms) Rendered people/new.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:40:02 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"40", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:02.976954"], ["dob", "2014-07-31 04:40:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 04:40:02.976954"]]  (1.7ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 2.0ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:40:02 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.9ms) Rendered people/new.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:40:03 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.4ms) Rendered people/new.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:40:03 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"40", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:03.024848"], ["dob", "2014-07-31 04:40:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 04:40:03.024848"]]  (0.7ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.2ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:03 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (1.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (5.5ms) Rendered people/index.html.haml within layouts/application (20.3ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 24ms (Views: 22.9ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.6ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:03.064045"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:03.064045"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:40:03 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (22.1ms) Rendered people/edit.html.haml within layouts/application (22.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.2ms)  (3.1ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.5ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:40:03 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (9.3ms) Rendered people/new.html.haml within layouts/application (9.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:03.143274"], ["dob", "2012-07-31 04:40:03.141982"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:03.143274"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:40:03 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.0ms) Rendered people/edit.html.haml within layouts/application (8.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-31 00:40:03 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"00", "dob(5i)"=>"40", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-31 00:40:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 04:40:03.182572"]]  (0.7ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:03 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:40:05 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (10.8ms) Rendered people/new.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-31 00:40:05 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:40:05 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-31 00:40:06 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"00", "dob(5i)"=>"40", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.4ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:06.617028"], ["dob", "2012-07-31 00:40:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:06.617028"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:64218/people Completed 302 Found in 5ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.8ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:07 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:07 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (5.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.3ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-31 00:40:07 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.8ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)  (1.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.8ms) Rendered people/index.html.haml within layouts/application (2.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.034742"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_4@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.034742"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.039247"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_5@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.039247"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.042353"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_6@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.042353"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.045446"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_7@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.045446"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.047849"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.047849"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (5.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-31 00:40:08 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.085264"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.085264"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.087857"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.087857"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.090631"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.090631"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.093257"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.093257"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.095749"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.095749"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.098289"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.098289"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.100881"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.100881"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.103869"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.103869"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.106827"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.106827"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.109862"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.109862"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.112693"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.112693"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.115605"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.115605"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.118395"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.118395"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.121109"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.121109"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.124825"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.124825"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.128269"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.128269"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.131593"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.131593"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.135040"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.135040"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.137597"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.137597"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.140495"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.140495"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.143176"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.143176"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.145785"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.145785"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.149847"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.149847"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.153474"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.153474"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.156192"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.156192"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.158838"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.158838"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.161422"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.161422"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.164010"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.164010"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.167607"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.167607"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.170598"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_20@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.170598"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.173639"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.173639"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.177592"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.177592"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.180695"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.180695"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.183674"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.183674"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.186619"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.186619"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.190667"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.190667"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.194308"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.194308"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.197827"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.197827"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.200773"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.200773"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.203795"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.203795"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.207151"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.207151"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.210125"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.210125"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.213033"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.213033"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.216416"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.216416"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.219872"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.219872"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.222838"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.222838"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.226078"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.226078"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.229095"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.229095"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.232988"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_31@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.232988"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:08.236045"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:08.236045"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.7ms) Rendered people/index.html.haml within layouts/application (16.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 17.5ms | ActiveRecord: 0.7ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-31 00:40:08 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.1ms) Rendered people/index.html.haml within layouts/application (14.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.9ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:09.446417"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:09.446417"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:09 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (8.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.0ms | ActiveRecord: 0.7ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-31 00:40:10 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) begin transaction SQL (0.2ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.3ms) commit transaction Redirected to http://127.0.0.1:64218/people Completed 302 Found in 4ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:10 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.3ms)  (0.2ms) SELECT COUNT(*) FROM "people"  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.243008"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.243008"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (5.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:40:11 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.4ms) Rendered people/edit.html.haml within layouts/application (8.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.279133"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.279133"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.282015"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.282015"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.284741"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.284741"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.287278"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.287278"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.289641"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.289641"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.292921"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.292921"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.295539"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.295539"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.298062"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.298062"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.301001"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.301001"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.303571"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.303571"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.305917"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.305917"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.309325"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.309325"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.311943"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.311943"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.314361"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.314361"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.316948"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.316948"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.319568"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.319568"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.322094"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.322094"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.324439"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.324439"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.326880"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.326880"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.329491"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.329491"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.332329"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.332329"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.335125"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.335125"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.337851"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.337851"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.340329"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.340329"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.343006"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.343006"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.345419"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.345419"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.347972"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.347972"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.350501"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.350501"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.353266"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.353266"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.355679"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.355679"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:11.358608"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:11.358608"]]  (1.0ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-31 00:40:11 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (10.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-31 00:40:11 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.5ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.6ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-31 00:40:12 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (9.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 11.4ms | ActiveRecord: 0.6ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-31 00:40:13 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.8ms) Rendered people/index.html.haml within layouts/application (15.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.7ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (4.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.096570"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.096570"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.099758"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.099758"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.103792"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.103792"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.107207"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.107207"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.111142"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.111142"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.113890"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.113890"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.117316"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.117316"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.120307"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.120307"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.123378"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.123378"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.126735"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.126735"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.129613"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.129613"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.132934"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.132934"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.136200"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.136200"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.138908"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.138908"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.142483"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.142483"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.146467"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.146467"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.149756"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.149756"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.152359"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.152359"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.154906"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.154906"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.157620"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.157620"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.160851"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.160851"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.163370"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.163370"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.166358"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.166358"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.169077"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.169077"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.171414"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.171414"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.173827"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.173827"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.176642"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.176642"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.179508"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.179508"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.182344"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.182344"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.185253"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.185253"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:14.187807"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:14.187807"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (10.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-31 00:40:14 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (28.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 32ms (Views: 29.4ms | ActiveRecord: 1.2ms)  (5.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.164341"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.164341"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.168317"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.168317"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.172058"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.172058"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.174907"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.174907"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.177291"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.177291"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.179630"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.179630"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.181973"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.181973"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.184371"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.184371"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.186926"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.186926"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.189779"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.189779"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.192384"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.192384"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.194804"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.194804"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.197202"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.197202"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.199916"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.199916"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.202443"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.202443"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.205252"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.205252"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.207893"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.207893"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.210310"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.210310"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.213921"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.213921"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.216882"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.216882"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.220385"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.220385"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.222855"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.222855"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.225360"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.225360"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.227871"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.227871"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.230325"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.230325"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.233181"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.233181"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.235966"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.235966"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.238820"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.238820"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.241617"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.241617"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.244159"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.244159"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.247860"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.247860"]]  (1.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (13.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.8ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-31 00:40:15 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (13.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 14.3ms | ActiveRecord: 0.9ms)  (4.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.763411"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.763411"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.765899"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.765899"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.768626"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.768626"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.771095"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.771095"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.773414"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.773414"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.775777"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.775777"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.778372"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.778372"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.781119"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.781119"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.783835"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.783835"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.786295"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.786295"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.788767"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.788767"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.791256"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.791256"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.794299"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.794299"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.797159"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.797159"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.800221"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.800221"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.803008"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.803008"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.805488"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.805488"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.808067"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.808067"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.810781"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.810781"]]  (1.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.814077"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.814077"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.816870"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.816870"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.819582"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.819582"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.822378"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.822378"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.824841"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.824841"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.827426"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.827426"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.830238"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.830238"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.833273"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.833273"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.836334"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.836334"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.839059"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.839059"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.841649"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.841649"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:15.845508"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:15.845508"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (12.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 13.8ms | ActiveRecord: 0.8ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-31 00:40:16 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (16.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 17.5ms | ActiveRecord: 0.9ms)  (4.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (5.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.599212"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.599212"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.603483"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.603483"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.606116"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.606116"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.609058"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.609058"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.611675"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.611675"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.614265"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.614265"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.616700"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.616700"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.619203"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.619203"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.621820"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.621820"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.624362"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.624362"]]  (1.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.627568"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.627568"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.630083"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.630083"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.633575"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.633575"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.636377"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.636377"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.639958"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.639958"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.642747"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.642747"]]  (2.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.646320"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.646320"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.649567"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.649567"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.652249"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.652249"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.655555"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.655555"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.658301"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.658301"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.661129"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.661129"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.665819"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.665819"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.670915"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.670915"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.673743"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.673743"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.676203"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.676203"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.678801"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.678801"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.681330"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.681330"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.684095"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.684095"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.686645"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.686645"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.690404"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.690404"]]  (1.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.6ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:16.737941"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:16.737941"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (5.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.1ms | ActiveRecord: 0.4ms)  (4.5ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.135566"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.135566"]]  (18.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.156393"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.156393"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.161151"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.161151"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.165758"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.165758"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.168484"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.168484"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.172287"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.172287"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.174709"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.174709"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.178725"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.178725"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.182752"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.182752"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.186750"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.186750"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.189313"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.189313"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.192596"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.192596"]]  (1.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.195669"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.195669"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.199893"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.199893"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.202188"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.202188"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.204488"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.204488"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.207930"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.207930"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.210396"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.210396"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.214457"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.214457"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.217277"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.217277"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.221174"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.221174"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.225077"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.225077"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.229075"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.229075"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.231627"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.231627"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.236356"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.236356"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.240746"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.240746"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.244911"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.244911"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.249924"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.249924"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.254290"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.254290"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.258329"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.258329"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:40:17.265451"], ["dob", "1984-07-31 04:39:59.737335"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:40:17.265451"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:40:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-31 00:40:17 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (12.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-31 00:40:17 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (17.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.6ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (2.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 04:40:22.132561"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.132561"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 04:40:22.138114"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.138114"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 04:40:22.142482"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.142482"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 04:40:22.147073"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.147073"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 04:40:22.152227"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.152227"]]  (3.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 04:40:22.157133"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.157133"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 04:40:22.161355"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.161355"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 04:40:22.165610"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.165610"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 04:40:22.170291"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.170291"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 04:40:22.173028"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.173028"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 04:40:22.178172"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.178172"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 04:40:22.182872"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.182872"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 04:40:22.188211"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.188211"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 04:40:22.192385"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.192385"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 04:40:22.196715"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.196715"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 04:40:22.201402"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.201402"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 04:40:22.205582"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.205582"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 04:40:22.210193"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.210193"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 04:40:22.215606"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.215606"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 04:40:22.221224"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.221224"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 04:40:22.225518"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.225518"]]  (2.8ms) commit transaction  (0.2ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 04:40:22.230495"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.230495"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 04:40:22.235132"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.235132"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 04:40:22.239852"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.239852"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 04:40:22.244325"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.244325"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 04:40:22.247207"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.247207"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 04:40:22.250307"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.250307"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 04:40:22.255001"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.255001"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 04:40:22.259122"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.259122"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 04:40:22.261956"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.261956"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 04:40:22.266332"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.266332"]]  (3.0ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-31 00:40:22 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 37ms (Views: 35.1ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-07-31 00:40:22 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.0ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-07-31 00:40:22 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.4ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.3ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 04:40:22.362611"], ["exp_date", "2016-07-31"], ["secret_code", "afa2a735c688bf65"], ["updated_at", "2014-07-31 04:40:22.362611"]]  (3.0ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-31 00:40:22 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered credit_card_infos/index.html.haml within layouts/application (2.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.4ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------- ControllerScaffoldingTest: test_truth -------------------------------------  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:52:02 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (26.6ms) Rendered people/new.html.haml within layouts/application (32.3ms) Rendered application/_flash_messages.html.haml (10.1ms) Completed 200 OK in 73ms (Views: 70.4ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:52:02 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"52", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.5ms) Rendered people/_form.html.haml (8.9ms) Rendered people/new.html.haml within layouts/application (9.2ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 17ms (Views: 10.7ms | ActiveRecord: 0.1ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:02.662948"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:02.662948"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:52:02 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.0ms) Rendered people/edit.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-31 00:52:02 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"51", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-07-31 04:51:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-31 04:52:02.691849"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 6ms (ActiveRecord: 1.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:52:02 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.1ms) Rendered people/edit.html.haml within layouts/application (8.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.1ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:52:02 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.7ms) Rendered people/new.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:52:02 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"52", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:02.738289"], ["dob", "2014-07-31 04:52:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 04:52:02.738289"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.2ms) Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:52:02 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (5.8ms) Rendered people/new.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)  (1.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:52:02 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.5ms) Rendered people/new.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-07-31 00:52:02 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"04", "dob(5i)"=>"52", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:02.784742"], ["dob", "2014-07-31 04:52:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-31 04:52:02.784742"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:02 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (2.8ms) Rendered application/_search_form.html.haml (3.1ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.1ms) Rendered people/index.html.haml within layouts/application (25.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 30ms (Views: 27.8ms | ActiveRecord: 0.5ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:02.833656"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:02.833656"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:52:02 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.7ms) Rendered people/edit.html.haml within layouts/application (8.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:52:02 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.4ms) Rendered people/new.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:02.879027"], ["dob", "2012-07-31 04:52:02.878118"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:02.879027"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:52:02 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.3ms) Rendered people/edit.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-07-31 00:52:02 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"00", "dob(5i)"=>"52", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-07-31 00:52:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-31 04:52:02.910477"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.8ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:02 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.4ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-07-31 00:52:05 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (15.5ms) Rendered people/new.html.haml within layouts/application (16.1ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-31 00:52:05 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:05 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-31 00:52:06 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"31", "dob(4i)"=>"00", "dob(5i)"=>"52", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:06.873847"], ["dob", "2012-07-31 00:52:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:06.873847"]]  (1.0ms) commit transaction Redirected to http://127.0.0.1:64791/people Completed 302 Found in 6ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 10ms (Views: 7.9ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:06 -0400  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:07 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (3.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:07 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:07 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-31 00:52:08 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.8ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:08 -0400  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.8ms) Rendered people/index.html.haml within layouts/application (2.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.310013"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_4@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.310013"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.313135"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_5@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.313135"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.315688"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_6@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.315688"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.318262"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_7@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.318262"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.320885"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.320885"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (5.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-31 00:52:08 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.4ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.358849"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.358849"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.362748"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.362748"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.366144"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.366144"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.368901"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.368901"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.371772"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.371772"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.374549"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.374549"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.377161"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.377161"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.379871"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.379871"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.383739"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.383739"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.386196"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.386196"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.389401"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.389401"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.392566"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.392566"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.395668"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.395668"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.398498"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.398498"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.401223"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.401223"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.404045"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.404045"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.407492"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.407492"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.410613"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.410613"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.413536"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.413536"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.417267"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.417267"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.419855"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.419855"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.423037"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.423037"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.426014"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.426014"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.428820"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.428820"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.431605"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.431605"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.434309"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.434309"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.436871"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.436871"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.439817"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.439817"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.442485"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.442485"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.445537"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.445537"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.448318"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.448318"]]  (1.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.451716"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.451716"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.454978"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.454978"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.458296"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.458296"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.461550"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.461550"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.464578"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.464578"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.467457"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.467457"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.470343"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.470343"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.473653"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.473653"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.477201"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.477201"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.480251"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.480251"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.483098"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.483098"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.485961"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.485961"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.489334"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.489334"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.493031"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_31@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.493031"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.496436"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.496436"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.499441"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.499441"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.502440"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.502440"]]  (1.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.505798"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.505798"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:08.508560"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:08.508560"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (12.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:08 -0400 Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-31 00:52:08 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (12.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:08 -0400  (1.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:09.781945"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:09.781945"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:09 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (13.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:09 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-07-31 00:52:10 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) begin transaction SQL (0.2ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.9ms) commit transaction Redirected to http://127.0.0.1:64791/people Completed 302 Found in 5ms (ActiveRecord: 2.3ms) Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:10 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (4.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:10 -0400  (0.3ms) SELECT COUNT(*) FROM "people"  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.572570"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.572570"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-31 00:52:11 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.1ms) Rendered people/edit.html.haml within layouts/application (8.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.605713"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.605713"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.609129"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.609129"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.612134"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.612134"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.614811"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.614811"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.617305"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.617305"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.619875"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.619875"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.623603"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.623603"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.626178"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.626178"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.628798"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.628798"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.631347"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.631347"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.633639"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.633639"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.636461"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.636461"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.639146"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.639146"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.641766"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.641766"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.644246"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.644246"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.647700"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.647700"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.650341"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.650341"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.653905"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.653905"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.657241"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.657241"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.660414"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.660414"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.663689"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.663689"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.667182"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.667182"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.670457"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.670457"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.674343"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.674343"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.677235"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.677235"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.680479"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.680479"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.682922"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.682922"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.686195"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.686195"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.689984"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.689984"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.694437"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.694437"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:11.699008"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:11.699008"]]  (1.7ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-31 00:52:11 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (12.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.6ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:11 -0400 Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-31 00:52:12 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (12.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:12 -0400 Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-31 00:52:12 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.1ms) Rendered people/index.html.haml within layouts/application (13.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:12 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-31 00:52:13 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.0ms) Rendered people/index.html.haml within layouts/application (14.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:13 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.415986"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.415986"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.419833"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.419833"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.423898"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.423898"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.428047"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.428047"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.431323"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.431323"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.433982"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.433982"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.437204"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.437204"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.441272"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.441272"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.445133"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.445133"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.449124"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.449124"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.452150"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.452150"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.456088"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.456088"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.460729"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.460729"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.464292"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.464292"]]  (1.8ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.469081"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.469081"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.473048"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.473048"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.475636"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.475636"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.478418"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.478418"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.481621"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.481621"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.484278"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.484278"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.487847"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.487847"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.491705"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.491705"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.495233"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.495233"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.498123"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.498123"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.500887"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.500887"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.504223"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.504223"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.507541"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.507541"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.510711"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.510711"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.513174"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.513174"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.515815"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.515815"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:14.519378"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:14.519378"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (11.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:14 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-31 00:52:14 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.9ms) Rendered people/index.html.haml within layouts/application (13.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:14 -0400  (1.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.076282"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.076282"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.082263"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.082263"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.085440"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.085440"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.087972"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.087972"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.090874"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.090874"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.093647"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.093647"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.097302"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.097302"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.100464"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.100464"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.103817"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.103817"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.107812"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.107812"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.110980"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.110980"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.114465"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.114465"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.118113"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.118113"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.122057"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.122057"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.125374"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.125374"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.129017"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.129017"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.132317"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.132317"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.135919"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.135919"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.139931"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.139931"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.143099"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.143099"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.146476"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.146476"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.149330"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.149330"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.151990"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.151990"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.154390"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.154390"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.157551"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.157551"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.161208"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.161208"]]  (1.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.164503"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.164503"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.167091"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.167091"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.170768"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.170768"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.173520"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.173520"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:15.177069"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:15.177069"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (12.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:15 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-31 00:52:15 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (17.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 21ms (Views: 18.4ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:15 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.5ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.079843"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.079843"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.082745"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.082745"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.085199"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.085199"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.089155"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.089155"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.092548"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.092548"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.095462"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.095462"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.098346"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.098346"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.101071"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.101071"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.103738"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.103738"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.107100"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.107100"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.111117"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.111117"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.114165"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.114165"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.117091"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.117091"]]  (0.9ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.121016"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.121016"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.124720"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.124720"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.127573"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.127573"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.130155"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.130155"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.133209"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.133209"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.136210"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.136210"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.140349"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.140349"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.143084"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.143084"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.145711"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.145711"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.148640"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.148640"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.151064"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.151064"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.153490"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.153490"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.158261"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.158261"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.161607"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.161607"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.164151"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.164151"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.166722"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.166722"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.169674"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.169674"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.172944"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.172944"]]  (2.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (14.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:16 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-31 00:52:16 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (15.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:16 -0400  (7.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (8.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.939649"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.939649"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.942347"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.942347"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.944716"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.944716"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.947165"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.947165"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.949765"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.949765"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.953679"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.953679"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.956881"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.956881"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.960255"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.960255"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.962930"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.962930"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.967110"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.967110"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.969815"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.969815"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.973702"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.973702"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.976785"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.976785"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.982645"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.982645"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.989268"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.989268"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.995887"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.995887"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:16.999177"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:16.999177"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.003440"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.003440"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.006404"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.006404"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.010672"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.010672"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.015516"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.015516"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.020019"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.020019"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.022744"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.022744"]]  (1.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.026181"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.026181"]]  (1.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.029416"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.029416"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.033681"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.033681"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.036284"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.036284"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.039234"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.039234"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.042830"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.042830"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.047454"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.047454"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.050149"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.050149"]]  (2.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.6ms)  (3.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.2ms)  (4.0ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.109415"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.109415"]]  (2.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.2ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-31 00:52:17 -0400  (25.9ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (36.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.602217"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.602217"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.606706"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.606706"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.611101"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.611101"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.613708"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.613708"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.616280"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.616280"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.620258"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.620258"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.625376"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.625376"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.629561"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.629561"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.632314"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.632314"]]  (2.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.635998"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.635998"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.640521"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.640521"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.644785"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.644785"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.649221"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.649221"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.653545"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.653545"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.659278"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.659278"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.664483"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.664483"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.669710"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.669710"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.673985"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.673985"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.676494"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.676494"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.680482"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.680482"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.684570"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.684570"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.688790"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.688790"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.693131"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.693131"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.697159"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.697159"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.701828"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.701828"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.706285"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.706285"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.710449"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.710449"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.714440"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.714440"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.718576"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.718576"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.723213"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.723213"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-31 04:52:17.727174"], ["dob", "1984-07-31 04:51:59.613222"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-31 04:52:17.727174"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-31 00:52:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (16.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-31 00:52:17 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (11.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-31 00:52:17 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (14.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.6ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.8ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.6ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-07-31 04:52:22.534221"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.534221"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-07-31 04:52:22.538596"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.538596"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-07-31 04:52:22.543459"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.543459"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-07-31 04:52:22.547827"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.547827"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-07-31 04:52:22.551978"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.551978"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-07-31 04:52:22.555022"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.555022"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-07-31 04:52:22.559523"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.559523"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-07-31 04:52:22.564103"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.564103"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-07-31 04:52:22.568128"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.568128"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-07-31 04:52:22.570771"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.570771"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-07-31 04:52:22.574017"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.574017"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-07-31 04:52:22.576874"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.576874"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-07-31 04:52:22.579554"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.579554"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-07-31 04:52:22.583748"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.583748"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-07-31 04:52:22.588182"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.588182"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-07-31 04:52:22.591843"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.591843"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-07-31 04:52:22.595857"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.595857"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-07-31 04:52:22.598330"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.598330"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-07-31 04:52:22.600986"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.600986"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-07-31 04:52:22.605161"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.605161"]]  (3.8ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-07-31 04:52:22.611299"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.611299"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-07-31 04:52:22.617343"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.617343"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-07-31 04:52:22.622271"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.622271"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-07-31 04:52:22.626729"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.626729"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-07-31 04:52:22.630941"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.630941"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-07-31 04:52:22.635265"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.635265"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-07-31 04:52:22.640275"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.640275"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-07-31 04:52:22.645974"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.645974"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-07-31 04:52:22.650897"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.650897"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-07-31 04:52:22.656987"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.656987"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-07-31 04:52:22.662497"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.662497"]]  (2.7ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-31 00:52:22 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.6ms) Rendered credit_card_infos/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 35ms (Views: 33.5ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-07-31 00:52:22 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.2ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-07-31 00:52:22 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (4.4ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-07-31 04:52:22.757638"], ["exp_date", "2016-07-31"], ["secret_code", "a54d4bae48ff2c0e"], ["updated_at", "2014-07-31 04:52:22.757638"]]  (2.6ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-07-31 00:52:22 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (2.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.3ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.2ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.2ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.2ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-08-04 22:00:52.890457"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:52.890457"]]  (1.5ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-04 18:00:52 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (30.4ms) Rendered credit_card_infos/index.html.haml within layouts/application (57.1ms) Rendered application/_flash_messages.html.haml (10.4ms) Completed 200 OK in 114ms (Views: 112.4ms | ActiveRecord: 0.4ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-08-04 22:00:53.093558"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.093558"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-08-04 22:00:53.096319"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.096319"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-08-04 22:00:53.098990"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.098990"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-08-04 22:00:53.101687"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.101687"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-08-04 22:00:53.104250"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.104250"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-08-04 22:00:53.106801"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.106801"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-08-04 22:00:53.109425"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.109425"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-08-04 22:00:53.112500"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.112500"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-08-04 22:00:53.115121"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.115121"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-08-04 22:00:53.117662"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.117662"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-08-04 22:00:53.120497"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.120497"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-08-04 22:00:53.123370"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.123370"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-08-04 22:00:53.127464"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.127464"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-08-04 22:00:53.130522"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.130522"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-08-04 22:00:53.132984"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.132984"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-08-04 22:00:53.135448"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.135448"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-08-04 22:00:53.138455"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.138455"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-08-04 22:00:53.141185"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.141185"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-08-04 22:00:53.144379"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.144379"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-08-04 22:00:53.147082"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.147082"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-08-04 22:00:53.149533"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.149533"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-08-04 22:00:53.151954"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.151954"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-08-04 22:00:53.155174"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.155174"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-08-04 22:00:53.158021"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.158021"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-08-04 22:00:53.160733"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.160733"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-08-04 22:00:53.163345"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.163345"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-08-04 22:00:53.165739"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.165739"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-08-04 22:00:53.167966"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.167966"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-08-04 22:00:53.170488"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.170488"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-08-04 22:00:53.172923"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.172923"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-08-04 22:00:53.175393"], ["exp_date", "2016-08-04"], ["secret_code", "50d1d694e7b90f34"], ["updated_at", "2014-08-04 22:00:53.175393"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-04 18:00:53 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-08-04 18:00:53 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-08-04 18:00:53 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.4ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-04 18:00:58 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.7ms) Rendered application/_search_form.html.haml (2.0ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (14.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 23ms (Views: 17.6ms | ActiveRecord: 0.6ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:02 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 0.4ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-04 18:01:02 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-04 18:01:02 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-04 18:01:02 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.8ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:02 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms)  (170.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (166.0ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:03 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.2ms)  (46.6ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (39.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:03.410947"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:03.410947"]]  (382.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:03.796616"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:03.796616"]]  (87.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:03.885882"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:03.885882"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:03.888771"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:03.888771"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:03.892249"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:03.892249"]]  (49.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:03.944124"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:03.944124"]]  (33.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:03.979931"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:03.979931"]]  (28.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.010877"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.010877"]]  (22.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.036107"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.036107"]]  (18.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.057613"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.057613"]]  (4.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.064935"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.064935"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.067766"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.067766"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.073490"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.073490"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.076513"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_66@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.076513"]]  (7.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.086075"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_66@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.086075"]]  (8.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.097189"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.097189"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.102904"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.102904"]]  (8.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.114266"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.114266"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.117472"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.117472"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.120512"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.120512"]]  (8.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.131517"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.131517"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.137052"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_20@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.137052"]]  (9.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.148633"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.148633"]]  (13.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.163974"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.163974"]]  (20.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.186836"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.186836"]]  (20.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.209537"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.209537"]]  (20.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.232079"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.232079"]]  (20.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.254494"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.254494"]]  (20.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.277118"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.277118"]]  (9.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.288566"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.288566"]]  (36.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.327757"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.327757"]]  (12.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.344330"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.344330"]]  (1.3ms) commit transaction  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.348750"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.348750"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.352180"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.352180"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.355353"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.355353"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.358652"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.358652"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.362250"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.362250"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.365250"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.365250"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.369456"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.369456"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.372571"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.372571"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.375662"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.375662"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.380139"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.380139"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.383442"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.383442"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.386391"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.386391"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.389288"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.389288"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.392590"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.392590"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.395921"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.395921"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.398871"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.398871"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.402310"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.402310"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:04.405388"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:04.405388"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:04 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (12.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.6ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-08-04 18:01:04 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.4ms) Rendered people/index.html.haml within layouts/application (16.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 16.7ms | ActiveRecord: 1.3ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:05.636903"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_1@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:05.636903"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:05.640402"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_2@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:05.640402"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:05.644645"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_3@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:05.644645"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:05.647317"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_4@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:05.647317"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:05.649838"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:05.649838"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:05 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-04 18:01:05 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.6ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:05.689601"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_5@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:05.689601"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:05 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-04 18:01:05 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (40.0ms) Rendered people/edit.html.haml within layouts/application (42.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 47ms (Views: 45.1ms | ActiveRecord: 0.3ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:05.760599"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_6@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:05.760599"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:05 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-04 18:01:06 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:60538/people Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.3ms)  (0.2ms) SELECT COUNT(*) FROM "people"  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:07 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:07.622656"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_7@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:07.622656"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:07 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.6ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:07.982495"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:07.982495"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:07.985291"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:07.985291"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:07.988298"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:07.988298"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:07.992083"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:07.992083"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:07.995097"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:07.995097"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:07.997500"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:07.997500"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:07.999799"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:07.999799"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.002692"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.002692"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.006091"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.006091"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.009435"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.009435"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.012183"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.012183"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.014579"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.014579"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.017023"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.017023"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.019515"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.019515"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.022415"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.022415"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.025117"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.025117"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.028613"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.028613"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.031502"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.031502"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.033937"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.033937"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.036440"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.036440"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.039353"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.039353"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.042099"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.042099"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.045527"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.045527"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.048457"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.048457"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.051029"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.051029"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.053647"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.053647"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.056352"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.056352"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.060230"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.060230"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.063577"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.063577"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.066028"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.066028"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.068553"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.068553"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (12.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.7ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-04 18:01:08 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (13.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.8ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-04 18:01:08 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (5.7ms) Rendered people/index.html.haml within layouts/application (26.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 29ms (Views: 27.3ms | ActiveRecord: 0.5ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.176157"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.176157"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.179192"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.179192"]]  (1.3ms) commit transaction  (2.7ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.185409"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.185409"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.191856"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.191856"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.196046"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.196046"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.200523"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.200523"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.204446"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.204446"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.207953"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.207953"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.211645"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.211645"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.215046"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.215046"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.218633"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.218633"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.222074"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.222074"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.225926"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.225926"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.228963"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.228963"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.232292"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.232292"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.235659"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.235659"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.238756"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.238756"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.242238"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.242238"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.245187"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.245187"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.249018"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.249018"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.252623"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.252623"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.256481"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.256481"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.259657"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.259657"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.263268"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.263268"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.266239"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.266239"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.269004"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.269004"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.272123"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.272123"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.275279"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.275279"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.278265"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.278265"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.281161"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.281161"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.284470"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.284470"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (15.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.8ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-04 18:01:08 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.9ms) Rendered people/index.html.haml within layouts/application (14.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.7ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.826930"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.826930"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.829796"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.829796"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.832407"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.832407"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.834810"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.834810"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.837717"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.837717"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.840354"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.840354"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.843843"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.843843"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.846395"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.846395"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.848948"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.848948"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.851318"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.851318"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.853721"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.853721"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.856326"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.856326"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.859149"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.859149"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.862544"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.862544"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.865615"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.865615"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.868123"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.868123"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.870661"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.870661"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.873403"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.873403"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.875909"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.875909"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.878966"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.878966"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.881568"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.881568"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.884996"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.884996"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.888021"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.888021"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.890598"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.890598"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.893606"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.893606"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.896562"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.896562"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.899058"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.899058"]]  (1.6ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.902220"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.902220"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.904850"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.904850"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.907848"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.907848"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:08.910569"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:08.910569"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (15.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 19ms (Views: 17.3ms | ActiveRecord: 0.9ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-04 18:01:09 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (15.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.6ms)  (33.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (10.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (19.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:09.957095"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:09.957095"]]  (6.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:09.965820"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:09.965820"]]  (11.6ms) commit transaction  (0.1ms) begin transaction SQL (36.8ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:09.979872"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:09.979872"]]  (52.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.071414"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.071414"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.074878"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.074878"]]  (27.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.104154"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.104154"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (42.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.110414"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.110414"]]  (29.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.184046"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.184046"]]  (6.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.193921"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.193921"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.197082"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.197082"]]  (11.8ms) commit transaction  (0.1ms) begin transaction SQL (19.1ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.211165"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.211165"]]  (16.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.248548"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.248548"]]  (29.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.279645"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.279645"]]  (30.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.312800"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.312800"]]  (27.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.343220"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.343220"]]  (9.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.355432"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.355432"]]  (31.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.389840"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.389840"]]  (53.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.446036"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.446036"]]  (9.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.458079"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.458079"]]  (17.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.478588"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.478588"]]  (27.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.508213"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.508213"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.511149"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.511149"]]  (34.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.548494"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.548494"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.551896"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.551896"]]  (12.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.566340"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.566340"]]  (48.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.617073"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.617073"]]  (14.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.633797"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.633797"]]  (21.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.658134"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.658134"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.661540"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.661540"]]  (25.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.689089"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.689089"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.693237"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.693237"]]  (28.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:10 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (12.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.6ms | ActiveRecord: 0.7ms)  (19.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (5.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.776309"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.776309"]]  (22.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.801029"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.801029"]]  (23.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.826829"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.826829"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.829601"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.829601"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.833717"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.833717"]]  (5.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.841285"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.841285"]]  (8.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.852254"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.852254"]]  (8.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.863163"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.863163"]]  (42.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.907916"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.907916"]]  (8.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.918140"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.918140"]]  (9.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.929693"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.929693"]]  (21.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.953479"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.953479"]]  (4.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:10.960660"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:10.960660"]]  (50.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.013672"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.013672"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.018011"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.018011"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.022395"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.022395"]]  (14.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.039393"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.039393"]]  (26.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.067842"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.067842"]]  (8.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.079082"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.079082"]]  (53.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.134752"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.134752"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.137469"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.137469"]]  (12.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.151484"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.151484"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.154817"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.154817"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.158817"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.158817"]]  (37.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.198608"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.198608"]]  (11.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.211830"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.211830"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.216035"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.216035"]]  (12.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.230394"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.230394"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.233488"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.233488"]]  (7.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.242691"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.242691"]]  (31.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:11.276492"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:11.276492"]]  (13.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (12.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-04 18:01:11 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (20.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 25ms (Views: 22.3ms | ActiveRecord: 0.9ms)  (16.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (10.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (4.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:12.910290"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:12.910290"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:12.914228"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:12.914228"]]  (68.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:12.985295"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:12.985295"]]  (45.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.033213"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.033213"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.037610"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.037610"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.041160"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.041160"]]  (14.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.058100"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.058100"]]  (7.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.068408"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.068408"]]  (18.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.089919"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.089919"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.093711"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.093711"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.097323"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.097323"]]  (11.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.111534"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.111534"]]  (8.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.121786"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.121786"]]  (43.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.168207"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.168207"]]  (12.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.183137"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.183137"]]  (7.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.193550"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.193550"]]  (13.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.209853"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.209853"]]  (12.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.225633"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.225633"]]  (14.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.242521"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.242521"]]  (8.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.252681"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.252681"]]  (47.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.302912"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.302912"]]  (12.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.317612"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.317612"]]  (10.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.330237"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.330237"]]  (14.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.347196"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.347196"]]  (9.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.358533"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.358533"]]  (61.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.422564"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.422564"]]  (14.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.439860"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.439860"]]  (6.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.448879"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.448879"]]  (7.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.458700"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.458700"]]  (14.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.475413"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.475413"]]  (7.5ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:13.486076"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:13.486076"]]  (5.4ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-04 18:01:13 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (10.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 11.8ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-04 18:01:14 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.2ms) Rendered people/index.html.haml within layouts/application (13.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 15.6ms | ActiveRecord: 0.8ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-04 18:01:14 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (10.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-04 18:01:15 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (12.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.6ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-04 18:01:16 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.3ms) Rendered people/new.html.haml within layouts/application (9.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-04 18:01:16 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"4", "dob(4i)"=>"22", "dob(5i)"=>"01", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (2.2ms) Rendered people/_form.html.haml (8.9ms) Rendered people/new.html.haml within layouts/application (9.2ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 19ms (Views: 10.9ms | ActiveRecord: 0.2ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-04 18:01:16 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.2ms) Rendered people/new.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:16.356539"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:16.356539"]]  (1.1ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-04 18:01:16 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.5ms) Rendered people/edit.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-04 18:01:16 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.8ms) Rendered people/new.html.haml within layouts/application (8.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-04 18:01:17 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"4", "dob(4i)"=>"18", "dob(5i)"=>"01", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:17.216403"], ["dob", "2012-08-04 18:01:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:17.216403"]]  (0.8ms) commit transaction Redirected to http://127.0.0.1:60538/people Completed 302 Found in 5ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (5.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 6.7ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:18.337147"], ["dob", "2012-08-04 22:01:18.336062"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:18.337147"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-04 18:01:18 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.7ms) Rendered people/edit.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-04 18:01:18 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"4", "dob(4i)"=>"18", "dob(5i)"=>"01", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-04 18:01:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-04 22:01:18.372391"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.3ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:18.405436"], ["dob", "1984-08-04 22:00:49.555418"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-04 22:01:18.405436"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-04 18:01:18 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.1ms) Rendered people/edit.html.haml within layouts/application (8.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-04 18:01:18 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"4", "dob(4i)"=>"22", "dob(5i)"=>"00", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-04 22:00:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-04 22:01:18.430586"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-04 18:01:18 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.8ms) Rendered people/edit.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-04 18:01:18 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.4ms) Rendered people/new.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-04 18:01:18 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"4", "dob(4i)"=>"22", "dob(5i)"=>"01", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:18.479602"], ["dob", "2014-08-04 22:01:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-04 22:01:18.479602"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.6ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-04 18:01:18 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.4ms) Rendered people/new.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-04 18:01:18 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.8ms) Rendered people/new.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-04 18:01:18 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"4", "dob(4i)"=>"22", "dob(5i)"=>"01", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-04 22:01:18.527527"], ["dob", "2014-08-04 22:01:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-04 22:01:18.527527"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-08-04 18:01:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.4ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.2ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.2ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:29.758168"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:29.758168"]]  (2.6ms) commit transaction  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (2.0ms) DELETE FROM sqlite_sequence where name = 'people';  (3.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:29.796374"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:29.796374"]]  (1.0ms) commit transaction  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.4ms) DELETE FROM sqlite_sequence where name = 'people';  (3.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:29.816108"], ["dob", "2012-08-06 18:49:29.813511"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:29.816108"]]  (2.8ms) commit transaction  (4.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people';  (3.2ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (3.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:29.847599"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:29.847599"]]  (1.0ms) commit transaction  (243.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (8.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (93.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.197014"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.197014"]]  (11.4ms) commit transaction  (15.4ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (8.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (7.9ms) DELETE FROM sqlite_sequence where name = 'people';  (2.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (6.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (6.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (6.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (5.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (9.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.288688"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_6@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.288688"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.294367"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_7@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.294367"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.298201"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_8@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.298201"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.302340"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_9@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.302340"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.307727"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.307727"]]  (1.9ms) commit transaction  (3.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (9.9ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (10.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.338180"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.338180"]]  (4.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.344346"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.344346"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.348767"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.348767"]]  (6.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.357514"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.357514"]]  (20.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.380244"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.380244"]]  (26.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.408846"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.408846"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.413508"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.413508"]]  (6.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.422148"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.422148"]]  (4.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.428960"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.428960"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.432161"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.432161"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.437381"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.437381"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.441867"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.441867"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.446168"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.446168"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.451178"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.451178"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.454283"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.454283"]]  (5.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.461694"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.461694"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.466954"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.466954"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.470375"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.470375"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.473228"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.473228"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.476251"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.476251"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.481133"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.481133"]]  (5.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.488491"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.488491"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.493121"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.493121"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.497335"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.497335"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.501814"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.501814"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.506526"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.506526"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.509224"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.509224"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.513442"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.513442"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.517622"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.517622"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.522654"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.522654"]]  (8.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.532928"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.532928"]]  (7.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.542215"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.542215"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.547094"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.547094"]]  (7.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.556610"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.556610"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.560971"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.560971"]]  (8.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.571375"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.571375"]]  (21.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.595330"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.595330"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.598402"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.598402"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.601508"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.601508"]]  (9.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.613119"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.613119"]]  (4.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.619491"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.619491"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.624431"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.624431"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.630046"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.630046"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.634530"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.634530"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.640027"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.640027"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.645295"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.645295"]]  (5.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.652333"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.652333"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.657546"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.657546"]]  (4.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.664120"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.664120"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.668835"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.668835"]]  (2.8ms) commit transaction  (3.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (7.1ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (9.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.696016"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.696016"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.701006"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.701006"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.705347"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.705347"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.708044"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.708044"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.712747"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.712747"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.718647"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.718647"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.723515"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.723515"]]  (4.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.729496"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.729496"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.732888"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.732888"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.737564"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.737564"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.741658"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.741658"]]  (4.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.748076"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.748076"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.750776"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.750776"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.753763"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.753763"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.757701"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.757701"]]  (7.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.767218"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.767218"]]  (10.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.779416"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.779416"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.782150"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.782150"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.784650"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.784650"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.787476"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.787476"]]  (8.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.797858"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.797858"]]  (10.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.809716"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.809716"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.812618"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.812618"]]  (4.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.819565"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.819565"]]  (4.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.825584"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.825584"]]  (13.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.840513"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.840513"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.843108"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.843108"]]  (4.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.848873"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.848873"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.851846"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.851846"]]  (14.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.868206"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.868206"]]  (13.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.883290"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.883290"]]  (20.6ms) commit transaction  (3.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.918935"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.918935"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.923486"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.923486"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.926027"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.926027"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.929806"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.929806"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.932641"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.932641"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.936315"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.936315"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.941119"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.941119"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.945363"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.945363"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.949876"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.949876"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.955040"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.955040"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.959197"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.959197"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.963167"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.963167"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.965720"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.965720"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.970104"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.970104"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.974311"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.974311"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.978523"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.978523"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.981032"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.981032"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.985230"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.985230"]]  (5.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.992402"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.992402"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:30.996909"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:30.996909"]]  (5.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.003585"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.003585"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.008915"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.008915"]]  (4.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.015129"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.015129"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.020407"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.020407"]]  (4.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.027033"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.027033"]]  (9.3ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.038272"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.038272"]]  (9.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.050033"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.050033"]]  (11.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.062779"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.062779"]]  (9.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.074135"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.074135"]]  (9.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.084972"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.084972"]]  (19.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.106563"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.106563"]]  (21.5ms) commit transaction  (4.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (8.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.149109"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.149109"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.154169"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.154169"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.159687"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.159687"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.163856"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.163856"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.168609"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.168609"]]  (3.1ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.175147"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.175147"]]  (37.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.214890"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.214890"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.219416"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.219416"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.224404"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.224404"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.228752"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.228752"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.233047"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.233047"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.237169"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.237169"]]  (13.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.252442"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.252442"]]  (4.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.258676"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.258676"]]  (8.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.268630"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.268630"]]  (3.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.274262"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.274262"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.279218"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.279218"]]  (6.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.287656"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.287656"]]  (4.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.293384"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.293384"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.298881"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.298881"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.303756"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.303756"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.309132"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.309132"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.313792"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.313792"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.318477"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.318477"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.323199"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.323199"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.327616"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.327616"]]  (3.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.333260"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.333260"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.338013"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.338013"]]  (9.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.349380"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.349380"]]  (6.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.357734"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.357734"]]  (9.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.369749"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.369749"]]  (11.6ms) commit transaction  (19.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (10.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (11.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.427436"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.427436"]]  (10.8ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.440446"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.440446"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.445600"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.445600"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.450662"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.450662"]]  (30.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.482562"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.482562"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.486830"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.486830"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.492323"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.492323"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.496622"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.496622"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.501961"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.501961"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.507005"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.507005"]]  (4.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.512835"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.512835"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.517529"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.517529"]]  (5.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.524706"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.524706"]]  (4.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.530844"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.530844"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.536454"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.536454"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.542005"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.542005"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.547707"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.547707"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.552891"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.552891"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.558791"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.558791"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.562488"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.562488"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.567943"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.567943"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.572269"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.572269"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.577272"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.577272"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.582318"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.582318"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.586344"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.586344"]]  (4.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.592485"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.592485"]]  (4.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.598260"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.598260"]]  (3.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.603951"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.603951"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.608666"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.608666"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.613702"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.613702"]]  (13.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.629347"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.629347"]]  (22.2ms) commit transaction  (5.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (18.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (4.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.683029"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.683029"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.687687"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.687687"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (39.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.692363"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.692363"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.736145"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.736145"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.740796"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.740796"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.749273"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.749273"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.755701"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.755701"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.761966"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.761966"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.766307"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.766307"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.774885"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.774885"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.779514"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.779514"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.784099"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.784099"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.788904"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.788904"]]  (3.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.793504"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.793504"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.797956"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.797956"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.802348"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.802348"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.807043"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.807043"]]  (7.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.816326"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.816326"]]  (9.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.828465"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.828465"]]  (7.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.838585"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.838585"]]  (9.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.849562"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.849562"]]  (10.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.862422"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.862422"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.867443"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.867443"]]  (4.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.873538"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.873538"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.878037"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.878037"]]  (5.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.885140"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.885140"]]  (9.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.896509"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.896509"]]  (9.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.907752"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.907752"]]  (10.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.920148"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.920148"]]  (18.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.940463"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.940463"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.945025"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.945025"]]  (24.6ms) commit transaction  (4.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (8.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (4.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:31.990564"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:31.990564"]]  (2.9ms) commit transaction  (3.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (6.9ms) DELETE FROM sqlite_sequence where name = 'people';  (5.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (5.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.024196"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.024196"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.028403"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.028403"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.033368"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.033368"]]  (8.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.044030"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.044030"]]  (6.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.052929"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.052929"]]  (10.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.066150"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.066150"]]  (11.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.079263"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.079263"]]  (5.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.087045"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.087045"]]  (358.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.447522"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.447522"]]  (11.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.460816"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.460816"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.465392"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.465392"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.469974"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.469974"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.474449"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.474449"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.478726"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.478726"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.483349"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.483349"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.487751"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.487751"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.492030"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.492030"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.496483"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.496483"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.500760"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.500760"]]  (3.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.505453"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.505453"]]  (3.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.510419"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.510419"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.514741"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.514741"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.519042"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.519042"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.523779"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.523779"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.528111"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.528111"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.532284"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.532284"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.537202"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.537202"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.542435"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.542435"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.546774"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.546774"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.551165"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.551165"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:49:32.555696"], ["dob", "1984-08-06 18:49:26.705057"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:49:32.555696"]]  (3.1ms) commit transaction  (31.3ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.5ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-08-06 18:49:36.668531"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.668531"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-08-06 18:49:36.674746"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.674746"]]  (2.8ms) commit transaction  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-08-06 18:49:36.679381"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.679381"]]  (4.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-08-06 18:49:36.685346"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.685346"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-08-06 18:49:36.690243"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.690243"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-08-06 18:49:36.694779"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.694779"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-08-06 18:49:36.699283"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.699283"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-08-06 18:49:36.703524"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.703524"]]  (3.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-08-06 18:49:36.707976"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.707976"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-08-06 18:49:36.712654"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.712654"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-08-06 18:49:36.717875"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.717875"]]  (3.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-08-06 18:49:36.723791"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.723791"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-08-06 18:49:36.728346"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.728346"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-08-06 18:49:36.733206"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.733206"]]  (2.8ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-08-06 18:49:36.737751"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.737751"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-08-06 18:49:36.743340"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.743340"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-08-06 18:49:36.748345"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.748345"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-08-06 18:49:36.753537"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.753537"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-08-06 18:49:36.758797"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.758797"]]  (3.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-08-06 18:49:36.763540"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.763540"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-08-06 18:49:36.767865"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.767865"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-08-06 18:49:36.772373"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.772373"]]  (3.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-08-06 18:49:36.776854"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.776854"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-08-06 18:49:36.782180"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.782180"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-08-06 18:49:36.787760"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.787760"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-08-06 18:49:36.792391"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.792391"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-08-06 18:49:36.796929"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.796929"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-08-06 18:49:36.801504"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.801504"]]  (3.7ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-08-06 18:49:36.807527"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.807527"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-08-06 18:49:36.812257"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.812257"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-08-06 18:49:36.817715"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.817715"]]  (3.0ms) commit transaction  (3.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.7ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-08-06 18:49:36.835056"], ["exp_date", "2016-08-06"], ["secret_code", "6468787f1351240d"], ["updated_at", "2014-08-06 18:49:36.835056"]]  (2.9ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (2.2ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (51.3ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (3.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (3.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (3.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (3.9ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.483933"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.483933"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.491260"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.491260"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.495634"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.495634"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.500121"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.500121"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.504635"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.504635"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.509047"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.509047"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.515165"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.515165"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.519365"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.519365"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.521960"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.521960"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.526270"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.526270"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.531277"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.531277"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.535996"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.535996"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.540702"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.540702"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.545173"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.545173"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.549650"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.549650"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.554107"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.554107"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.558541"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.558541"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.563122"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.563122"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.567785"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.567785"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.572441"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.572441"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.576744"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.576744"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.581439"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.581439"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.586005"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.586005"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.590759"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.590759"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.595460"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.595460"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.599754"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.599754"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.604346"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.604346"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.608719"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.608719"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.613590"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.613590"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.618351"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.618351"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.623332"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.623332"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.628109"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.628109"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.632730"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.632730"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.638280"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.638280"]]  (3.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.644105"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.644105"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.649114"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.649114"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.654319"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.654319"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.659094"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.659094"]]  (3.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.663662"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.663662"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.668526"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.668526"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.673209"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.673209"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.677864"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.677864"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.682717"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.682717"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.687280"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.687280"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.692335"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.692335"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.697039"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.697039"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.702004"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.702004"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.706094"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.706094"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.710122"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.710122"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.714789"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.714789"]]  (3.0ms) commit transaction  (3.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.5ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.731170"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_1@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.731170"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.735633"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_2@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.735633"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.739922"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_3@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.739922"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.745626"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_4@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.745626"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.750197"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.750197"]]  (2.7ms) commit transaction  (3.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.3ms) DELETE FROM sqlite_sequence where name = 'people';  (4.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.775866"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_5@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.775866"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.780679"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_6@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.780679"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.785027"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_7@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.785027"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.789521"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.789521"]]  (2.9ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.794632"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.794632"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.799350"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.799350"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.803754"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.803754"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.808041"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.808041"]]  (2.7ms) commit transaction  (0.7ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.813030"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.813030"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.817964"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.817964"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.822408"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.822408"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.826595"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.826595"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.830691"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.830691"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.834857"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.834857"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.839070"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.839070"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.844113"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.844113"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.848399"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.848399"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.852876"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.852876"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.857278"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.857278"]]  (8.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.867433"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.867433"]]  (13.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.883452"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.883452"]]  (14.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.899467"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.899467"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.904484"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.904484"]]  (12.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.919479"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.919479"]]  (15.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.936584"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.936584"]]  (9.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.947484"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.947484"]]  (44.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:21.994595"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:21.994595"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.000384"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.000384"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.005074"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.005074"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.009269"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.009269"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.013725"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.013725"]]  (2.7ms) commit transaction  (4.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (9.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (10.6ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.045001"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.045001"]]  (5.0ms) commit transaction  (4.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (10.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (19.7ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.088014"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.088014"]]  (6.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.096326"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.096326"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.101869"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.101869"]]  (3.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.106471"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.106471"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.110697"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.110697"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.114918"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.114918"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.119070"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.119070"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.123786"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.123786"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.129149"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.129149"]]  (4.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.135661"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.135661"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.140319"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.140319"]]  (4.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.146774"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.146774"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.152344"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.152344"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.157942"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.157942"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.163498"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.163498"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.168514"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.168514"]]  (4.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.174891"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.174891"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.180422"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.180422"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.185959"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.185959"]]  (13.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.201121"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.201121"]]  (8.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.211807"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.211807"]]  (9.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.223153"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.223153"]]  (6.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.231167"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.231167"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.235660"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.235660"]]  (6.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.243847"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.243847"]]  (8.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.254054"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.254054"]]  (11.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.266937"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.266937"]]  (11.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.279819"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.279819"]]  (10.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.292180"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.292180"]]  (9.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.303732"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.303732"]]  (19.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.325473"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.325473"]]  (32.8ms) commit transaction  (4.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (9.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (20.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.395934"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.395934"]]  (12.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.410808"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.410808"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.417139"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.417139"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.422487"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.422487"]]  (6.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.430642"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.430642"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.436213"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.436213"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.441222"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.441222"]]  (4.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.447163"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.447163"]]  (4.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.453146"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.453146"]]  (5.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.460352"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.460352"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.465365"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.465365"]]  (5.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.472120"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.472120"]]  (9.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.483349"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.483349"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.488011"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.488011"]]  (10.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.500457"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.500457"]]  (3.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.505179"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.505179"]]  (3.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.510829"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.510829"]]  (4.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.517460"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.517460"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.522137"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.522137"]]  (9.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.533394"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.533394"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.538540"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.538540"]]  (9.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.549660"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.549660"]]  (4.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.555636"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.555636"]]  (5.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.562456"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.562456"]]  (7.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.571780"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.571780"]]  (9.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.583172"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.583172"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.588177"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.588177"]]  (7.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.597873"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.597873"]]  (10.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.610710"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.610710"]]  (3.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.615606"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.615606"]]  (19.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.636829"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.636829"]]  (43.6ms) commit transaction  (4.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (7.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (8.5ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.705323"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.705323"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.710227"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.710227"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.714423"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.714423"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.718859"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.718859"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:22.723121"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:22.723121"]]  (340.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.065621"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.065621"]]  (9.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.115721"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.115721"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.120821"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.120821"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.127005"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.127005"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.133500"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.133500"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.139949"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.139949"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.144298"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.144298"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.148480"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.148480"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.153396"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.153396"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.161718"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.161718"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.165874"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.165874"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.170501"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.170501"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.175390"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.175390"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.181135"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.181135"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.185503"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.185503"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.189736"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.189736"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.193873"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.193873"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.198002"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.198002"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.202164"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.202164"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.206281"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.206281"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.211132"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.211132"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.215369"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.215369"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.219703"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.219703"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.224630"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.224630"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.228853"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.228853"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.232777"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.232777"]]  (2.8ms) commit transaction  (3.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.248861"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.248861"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.253411"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.253411"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.257838"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.257838"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.262977"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.262977"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.268332"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.268332"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.272676"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.272676"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.277205"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.277205"]]  (3.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.282505"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.282505"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.287351"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.287351"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.291700"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.291700"]]  (3.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.296389"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.296389"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.300787"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.300787"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.305214"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.305214"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.309561"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.309561"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.313827"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.313827"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.318037"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.318037"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.322441"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.322441"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.327781"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.327781"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.332767"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.332767"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.337596"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.337596"]]  (4.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.344100"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.344100"]]  (3.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.348985"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.348985"]]  (3.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.354536"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.354536"]]  (14.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.370860"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.370860"]]  (3.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.375720"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.375720"]]  (15.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.392878"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.392878"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.397113"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.397113"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.401846"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.401846"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.407060"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.407060"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.411509"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.411509"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.415678"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.415678"]]  (8.0ms) commit transaction  (4.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.5ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.439044"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.439044"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.443425"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.443425"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.447613"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.447613"]]  (5.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.455021"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.455021"]]  (14.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.471225"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.471225"]]  (3.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.476255"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.476255"]]  (4.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.482144"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.482144"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.486460"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.486460"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.491387"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.491387"]]  (3.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.496119"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.496119"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.501501"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.501501"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.506883"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.506883"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.511287"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.511287"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.516589"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.516589"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.521789"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.521789"]]  (4.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.527986"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.527986"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.533396"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.533396"]]  (4.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.539152"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.539152"]]  (4.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.545194"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.545194"]]  (5.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.552423"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.552423"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.557556"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.557556"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.562216"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.562216"]]  (3.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.566867"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.566867"]]  (5.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.573907"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.573907"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.578322"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.578322"]]  (5.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.585685"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.585685"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.591455"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.591455"]]  (17.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.611024"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.611024"]]  (5.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.618621"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.618621"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.623503"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.623503"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.629145"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.629145"]]  (16.3ms) commit transaction  (3.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (14.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.672281"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.672281"]]  (3.6ms) commit transaction  (2.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (5.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (4.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.691265"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.691265"]]  (4.3ms) commit transaction  (3.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (10.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (5.6ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (4.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.733385"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.733385"]]  (3.2ms) commit transaction  (3.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (9.9ms) DELETE FROM sqlite_sequence where name = 'people';  (4.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.768841"], ["dob", "2012-08-06 18:51:23.767890"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.768841"]]  (2.7ms) commit transaction  (10.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (6.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (11.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:51:23.803527"], ["dob", "1984-08-06 18:51:18.755152"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:51:23.803527"]]  (2.7ms) commit transaction  (4.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (9.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (20.0ms) DELETE FROM sqlite_sequence where name = 'people';  (4.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:52:33 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (83.0ms) Rendered people/new.html.haml within layouts/application (102.4ms) Rendered application/_flash_messages.html.haml (9.4ms) Completed 200 OK in 165ms (Views: 161.8ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-08-06 14:52:34 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"52", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (2.0ms) Rendered people/_form.html.haml (6.1ms) Rendered people/new.html.haml within layouts/application (6.3ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 14ms (Views: 7.7ms | ActiveRecord: 0.2ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:52:34 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (69.2ms) Rendered people/new.html.haml within layouts/application (69.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 71ms (Views: 71.0ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-06 14:52:34 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"52", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:34.142427"], ["dob", "2014-08-06 18:52:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-06 18:52:34.142427"]]  (1.5ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 7ms (ActiveRecord: 1.9ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:52:34 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.6ms) Rendered people/new.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:52:34 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.1ms) Rendered people/new.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-06 14:52:34 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"52", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:34.194401"], ["dob", "2014-08-06 18:52:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-06 18:52:34.194401"]]  (1.8ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 2.1ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:34 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.0ms) Rendered people/index.html.haml within layouts/application (16.6ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:34.229768"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:34.229768"]]  (1.1ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:52:34 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.8ms) Rendered people/edit.html.haml within layouts/application (8.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-06 14:52:34 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"52", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-06 18:52:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-06 18:52:34.255189"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.5ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:52:34 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.1ms) Rendered people/edit.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.1ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:34.282173"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:34.282173"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:52:34 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (11.4ms) Rendered people/edit.html.haml within layouts/application (11.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.8ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:52:34 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.3ms) Rendered people/new.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:34.333540"], ["dob", "2012-08-06 18:52:34.332614"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:34.333540"]]  (1.1ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:52:34 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.9ms) Rendered people/edit.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-06 14:52:34 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"14", "dob(5i)"=>"52", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-06 14:52:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-06 18:52:34.366117"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:34 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.3ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:52:38 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (11.0ms) Rendered people/new.html.haml within layouts/application (12.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-06 14:52:38 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:52:38 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-06 14:52:39 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"14", "dob(5i)"=>"52", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.3ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:39.061564"], ["dob", "2012-08-06 14:52:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:39.061564"]]  (1.0ms) commit transaction Redirected to http://127.0.0.1:52930/people Completed 302 Found in 5ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.5ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:40 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.3ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:40.052946"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:40.052946"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:40 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.5ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-06 14:52:40 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (2.1ms) commit transaction Redirected to http://127.0.0.1:52930/people Completed 302 Found in 6ms (ActiveRecord: 2.9ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:40 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.3ms)  (0.2ms) SELECT COUNT(*) FROM "people"  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.876811"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.876811"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:52:41 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.1ms) Rendered people/edit.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.1ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.906633"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.906633"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.909574"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.909574"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.912080"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.912080"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.915036"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.915036"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.918437"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.918437"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.921527"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.921527"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.924206"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.924206"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.926741"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.926741"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.929164"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.929164"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.931629"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.931629"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.934101"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.934101"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.936670"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.936670"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.939133"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.939133"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.941564"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.941564"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.943980"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.943980"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.946550"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.946550"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.949204"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.949204"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.951802"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.951802"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.955064"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.955064"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.957847"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.957847"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.961597"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.961597"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.964354"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.964354"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.967189"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.967189"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.970565"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.970565"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.974070"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.974070"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.976542"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.976542"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.979032"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.979032"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.981596"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.981596"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.984007"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.984007"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.986459"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.986459"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:41.989060"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:41.989060"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-06 14:52:42 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (10.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-06 14:52:42 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.2ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.6ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-06 14:52:43 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (12.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.6ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-06 14:52:43 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (13.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.8ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.681220"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.681220"]]  (8.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.691896"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.691896"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.694372"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.694372"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.696983"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.696983"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.700437"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.700437"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.703122"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.703122"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.706014"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.706014"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.708532"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.708532"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.711129"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.711129"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.713864"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.713864"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.716965"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.716965"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.720007"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.720007"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.723062"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.723062"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.725752"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.725752"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.728325"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.728325"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.730936"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.730936"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.733330"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.733330"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.736520"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.736520"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.739535"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.739535"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.742054"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.742054"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.744843"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.744843"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.747712"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.747712"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.751110"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.751110"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.754236"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.754236"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.757013"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.757013"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.759702"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.759702"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.762479"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.762479"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.766356"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.766356"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.769182"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.769182"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.772059"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.772059"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:44.774830"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:44.774830"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.3ms) Rendered people/index.html.haml within layouts/application (13.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-06 14:52:45 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.5ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (13.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 14.4ms | ActiveRecord: 1.0ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (34.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:45.986805"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:45.986805"]]  (10.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:45.999861"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:45.999861"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.003200"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.003200"]]  (32.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.038091"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.038091"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.043584"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.043584"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.046249"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.046249"]]  (10.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.059026"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.059026"]]  (31.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.092821"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.092821"]]  (13.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.108359"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.108359"]]  (9.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.119787"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.119787"]]  (14.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.136068"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.136068"]]  (13.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.152381"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.152381"]]  (21.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.176346"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.176346"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.180080"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.180080"]]  (14.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.196528"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.196528"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.199991"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.199991"]]  (55.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.258303"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.258303"]]  (47.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.308193"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.308193"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.311714"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.311714"]]  (31.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.344921"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.344921"]]  (17.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.365272"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.365272"]]  (8.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.376685"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.376685"]]  (12.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.391446"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.391446"]]  (7.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.400695"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.400695"]]  (9.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.412832"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.412832"]]  (39.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.454229"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.454229"]]  (27.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.484912"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.484912"]]  (21.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.509221"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.509221"]]  (11.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.523215"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.523215"]]  (8.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.534413"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.534413"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:46.537514"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:46.537514"]]  (24.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:46 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (11.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-06 14:52:46 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (22.1ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 27ms (Views: 23.9ms | ActiveRecord: 1.2ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.5ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.364831"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.364831"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.368568"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.368568"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.372555"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.372555"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.375268"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.375268"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.377932"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.377932"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.380397"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.380397"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.382799"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.382799"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.385548"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.385548"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.387917"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.387917"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.390461"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.390461"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.393076"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.393076"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.395728"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.395728"]]  (0.9ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.399457"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.399457"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.402806"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.402806"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.406545"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.406545"]]  (0.9ms) commit transaction  (0.2ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.409453"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.409453"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.411913"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.411913"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.414540"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.414540"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.417469"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.417469"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.420121"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.420121"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.422568"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.422568"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.425361"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.425361"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.427897"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.427897"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.431359"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.431359"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.433973"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.433973"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.436565"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.436565"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.438988"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.438988"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.441527"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.441527"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.444115"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.444115"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.446642"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.446642"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.449321"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.449321"]]  (1.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:48 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (11.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.7ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.479018"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.479018"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.481930"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.481930"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.484366"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.484366"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.487405"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.487405"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.490678"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.490678"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.493360"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.493360"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.495898"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.495898"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.498494"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.498494"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.501686"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.501686"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.505108"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.505108"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.508801"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.508801"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.511715"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.511715"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.514642"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.514642"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.517784"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.517784"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.521483"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.521483"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.524054"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.524054"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.526620"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.526620"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.529224"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.529224"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.531726"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.531726"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.534677"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.534677"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.537554"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.537554"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.539938"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.539938"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.542690"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.542690"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.545354"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.545354"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.548061"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.548061"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.551690"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.551690"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.554482"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.554482"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.556955"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.556955"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.559689"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.559689"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.562370"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.562370"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:48.565171"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:48.565171"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:48 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (12.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-06 14:52:48 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (9.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.5ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.053399"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.053399"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:49 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.6ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.431272"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.431272"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.434491"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.434491"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.437869"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.437869"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.440609"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.440609"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.443961"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.443961"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.446724"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.446724"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.449773"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.449773"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.452678"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.452678"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.456341"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.456341"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.458889"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.458889"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.461397"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.461397"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.464071"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.464071"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.466956"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.466956"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.470914"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.470914"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.473883"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.473883"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.476334"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.476334"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.478752"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.478752"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.481210"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.481210"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.483634"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.483634"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.486121"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.486121"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.488603"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.488603"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.490931"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.490931"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.494182"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.494182"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.497707"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.497707"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.500402"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.500402"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.503202"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.503202"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.506225"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.506225"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.508761"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.508761"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.512298"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_190@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.512298"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.515071"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_191@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.515071"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:49.517745"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_192@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:49.517745"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:49 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-06 14:52:49 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.0ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-06 14:52:49 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (14.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:49 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:49 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:49 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:49 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-06 14:52:49 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.8ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.055022"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_193@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.055022"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.060204"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_194@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.060204"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.062909"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_195@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.062909"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.066362"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoe_196@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.066362"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.069007"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.069007"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:50 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (5.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-06 14:52:50 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.3ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.102542"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.102542"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.112193"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.112193"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.117343"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.117343"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.120483"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.120483"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.123532"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_66@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.123532"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.126809"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.126809"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.129566"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.129566"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.132690"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.132690"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.136256"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.136256"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.140036"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.140036"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.142791"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.142791"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.145429"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.145429"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.147853"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.147853"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.150895"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.150895"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.154367"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.154367"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.157059"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.157059"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.160008"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.160008"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.162601"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.162601"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.165547"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.165547"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.169378"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.169378"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.172818"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.172818"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.176124"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.176124"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.178731"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.178731"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.182002"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.182002"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.184812"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.184812"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.187582"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.187582"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.190214"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.190214"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.192851"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.192851"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.195711"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.195711"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.198555"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.198555"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.201783"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.201783"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.204744"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.204744"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.207477"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.207477"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.210259"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.210259"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.212996"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.212996"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.216445"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.216445"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.219687"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.219687"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.222562"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.222562"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.225576"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.225576"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.228778"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.228778"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.231711"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.231711"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.234595"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.234595"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.237864"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.237864"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.240893"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.240893"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.243777"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.243777"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.246749"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.246749"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.249563"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.249563"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.252861"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.252861"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.255864"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.255864"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:52:50.258741"], ["dob", "1984-08-06 18:52:31.067998"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:52:50.258741"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:52:50 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (16.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.9ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-08-06 14:52:50 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (14.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 1.0ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-08-06 18:53:03.431705"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.431705"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-06 14:53:03 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (13.3ms) Rendered credit_card_infos/index.html.haml within layouts/application (22.9ms) Rendered application/_flash_messages.html.haml (9.9ms) Completed 200 OK in 64ms (Views: 63.1ms | ActiveRecord: 0.5ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-08-06 18:53:03.536237"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.536237"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-08-06 18:53:03.539023"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.539023"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-08-06 18:53:03.541542"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.541542"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-08-06 18:53:03.544125"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.544125"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-08-06 18:53:03.546555"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.546555"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-08-06 18:53:03.548970"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.548970"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-08-06 18:53:03.552650"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.552650"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-08-06 18:53:03.555464"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.555464"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-08-06 18:53:03.558019"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.558019"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-08-06 18:53:03.560531"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.560531"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-08-06 18:53:03.562925"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.562925"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-08-06 18:53:03.565909"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.565909"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-08-06 18:53:03.569504"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.569504"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-08-06 18:53:03.573297"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.573297"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-08-06 18:53:03.576335"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.576335"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-08-06 18:53:03.580715"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.580715"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-08-06 18:53:03.584062"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.584062"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-08-06 18:53:03.587246"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.587246"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-08-06 18:53:03.590302"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.590302"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-08-06 18:53:03.593230"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.593230"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-08-06 18:53:03.595994"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.595994"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-08-06 18:53:03.598717"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.598717"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-08-06 18:53:03.601671"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.601671"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-08-06 18:53:03.604714"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.604714"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-08-06 18:53:03.607964"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.607964"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-08-06 18:53:03.610583"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.610583"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-08-06 18:53:03.613641"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.613641"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-08-06 18:53:03.616197"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.616197"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-08-06 18:53:03.619026"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.619026"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-08-06 18:53:03.621794"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.621794"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-08-06 18:53:03.624565"], ["exp_date", "2016-08-06"], ["secret_code", "73e401950511a141"], ["updated_at", "2014-08-06 18:53:03.624565"]]  (1.3ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-06 14:53:03 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-08-06 14:53:03 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.6ms) Rendered credit_card_infos/index.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-08-06 14:53:03 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.5ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.8ms) Rendered application/_search_form.html.haml (1.6ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (12.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 103ms (Views: 99.1ms | ActiveRecord: 0.6ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:10 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (6.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 12ms (Views: 9.4ms | ActiveRecord: 0.5ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-06 14:53:10 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:10 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-06 14:53:11 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:11 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.535719"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.535719"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.540471"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.540471"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.543157"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.543157"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.545799"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.545799"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.548922"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.548922"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.552793"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.552793"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.556224"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.556224"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.560001"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.560001"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.562896"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.562896"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.566391"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.566391"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.569317"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.569317"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.572194"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.572194"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.575547"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.575547"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.578191"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.578191"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.580965"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.580965"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.583765"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.583765"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.586907"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.586907"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.589626"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.589626"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.592280"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.592280"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.594843"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.594843"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.597626"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.597626"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.600301"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.600301"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.602865"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.602865"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.605500"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.605500"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.608425"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.608425"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.611130"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.611130"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.613728"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.613728"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.616715"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.616715"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.619653"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.619653"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.622635"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.622635"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.625375"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.625375"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.628251"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.628251"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.631187"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.631187"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.634923"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.634923"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.637837"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.637837"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.640748"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.640748"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.643754"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.643754"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.646652"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.646652"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.649901"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.649901"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.653996"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.653996"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.657160"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.657160"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.660098"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.660098"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.663090"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.663090"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.667263"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.667263"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.671872"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.671872"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.675889"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.675889"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.679183"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.679183"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.682220"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.682220"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.685649"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.685649"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:11.689617"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:11.689617"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (13.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 14.8ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:11 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.795959"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_1@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.795959"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.799005"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_2@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.799005"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.802339"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_3@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.802339"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.806153"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_4@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.806153"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (2.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.808765"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.808765"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.5ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-06 14:53:14 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (2.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.868123"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_5@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.868123"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.870771"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_6@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.870771"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.873191"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_7@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.873191"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.875822"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.875822"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.878610"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.878610"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.882389"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.882389"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.886963"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.886963"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.889446"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.889446"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.892063"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.892063"]]  (5.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.899366"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.899366"]]  (6.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.909024"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.909024"]]  (4.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.915800"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.915800"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.921298"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.921298"]]  (18.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.942070"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.942070"]]  (10.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.954364"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.954364"]]  (10.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.966710"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.966710"]]  (15.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.984335"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.984335"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:14.989455"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:14.989455"]]  (8.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.000928"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.000928"]]  (26.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.030372"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.030372"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.034845"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.034845"]]  (7.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.044465"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.044465"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.047983"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.047983"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.051063"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.051063"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.095701"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.095701"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.100401"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.100401"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.104307"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.104307"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.108838"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.108838"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.112140"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.112140"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.116139"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.116139"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.120349"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.120349"]]  (1.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (1.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (12.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-06 14:53:15 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-06 14:53:15 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (21.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.6ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.222955"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.222955"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (6.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:15 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.534455"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.534455"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.537668"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.537668"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.540630"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.540630"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.544200"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.544200"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.547115"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.547115"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.550213"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.550213"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.553052"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.553052"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.555540"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.555540"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.557776"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.557776"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.560272"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.560272"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.562750"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.562750"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.565443"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.565443"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.569088"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.569088"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.572531"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.572531"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.575177"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.575177"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.577530"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.577530"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.579976"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.579976"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.583086"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.583086"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.585783"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.585783"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.588276"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.588276"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.591010"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.591010"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.594474"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.594474"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.598004"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.598004"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.601160"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.601160"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.603720"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.603720"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.606149"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.606149"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.608906"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.608906"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.611389"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.611389"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.614253"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.614253"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.616948"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.616948"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:15.619900"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:15.619900"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (13.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:15 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-06 14:53:15 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.1ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (23.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 27ms (Views: 25.4ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:15 -0400  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.473056"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.473056"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.476219"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.476219"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.479027"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.479027"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.481529"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.481529"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.485926"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.485926"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.488904"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.488904"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.492577"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.492577"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.495544"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.495544"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.499129"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.499129"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.502601"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.502601"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.505435"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.505435"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.509042"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.509042"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.511627"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.511627"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.514010"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.514010"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.516498"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.516498"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.519565"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.519565"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.522689"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.522689"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.525252"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.525252"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.527806"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.527806"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.530378"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.530378"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.533286"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.533286"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.536774"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.536774"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.540122"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.540122"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.543738"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.543738"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.546497"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.546497"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.550092"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.550092"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.554098"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.554098"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.557772"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.557772"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.560502"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.560502"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.563314"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.563314"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:16.566247"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:16.566247"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (13.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:16 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-06 14:53:16 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.9ms) Rendered people/index.html.haml within layouts/application (11.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:16 -0400  (1.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.065096"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.065096"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.068206"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.068206"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.071296"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.071296"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.073617"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.073617"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.075966"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.075966"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.078426"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.078426"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.080837"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.080837"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.083351"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.083351"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.085872"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.085872"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.094914"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.094914"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.098413"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.098413"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.101901"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.101901"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.105658"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.105658"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.108305"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.108305"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.115524"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.115524"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.118571"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.118571"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.121133"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.121133"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.123647"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.123647"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.126139"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.126139"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.129735"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.129735"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.133108"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.133108"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.136093"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.136093"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.139050"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.139050"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.141683"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.141683"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.145247"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.145247"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.147854"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.147854"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.151026"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.151026"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.154718"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.154718"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.157577"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.157577"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.160067"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.160067"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.162480"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.162480"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.8ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.7ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.193019"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.193019"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.196541"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.196541"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.199148"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.199148"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.202363"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.202363"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.204906"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.204906"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.207303"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.207303"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.209626"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.209626"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.212172"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.212172"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.215173"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.215173"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.218904"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.218904"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.221641"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.221641"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.225356"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.225356"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.227930"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.227930"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.230441"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.230441"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.233401"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.233401"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.236724"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.236724"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.239861"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.239861"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.243370"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.243370"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.245847"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.245847"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.248740"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.248740"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.251742"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.251742"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.254135"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.254135"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.256866"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.256866"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.259479"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.259479"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.262545"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.262545"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.265097"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.265097"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.267697"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.267697"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.270317"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.270317"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.272838"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.272838"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.276199"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.276199"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.279500"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.279500"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (13.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:17 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-06 14:53:17 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.2ms) Rendered people/index.html.haml within layouts/application (13.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:17 -0400  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.994117"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.994117"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:17.997383"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:17.997383"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.000000"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.000000"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.003337"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.003337"]]  (1.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.007391"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.007391"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.010059"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.010059"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.012560"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.012560"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.015473"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.015473"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.018751"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.018751"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.021181"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.021181"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.023804"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.023804"]]  (1.5ms) commit transaction  (0.2ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.027174"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.027174"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.030881"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.030881"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.034123"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.034123"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.038165"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.038165"]]  (1.2ms) commit transaction  (0.2ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.041597"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.041597"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.044423"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.044423"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.047506"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.047506"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.050146"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.050146"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.052984"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.052984"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.055801"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.055801"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.058843"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.058843"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.061519"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.061519"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.064117"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.064117"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.066750"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.066750"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.069690"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.069690"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.072301"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.072301"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.076520"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.076520"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.079411"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.079411"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.082037"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.082037"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:18.084952"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:18.084952"]]  (1.4ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-06 14:53:18 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.2ms) Rendered people/index.html.haml within layouts/application (11.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:18 -0400 Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-06 14:53:18 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (5.6ms) Rendered people/index.html.haml within layouts/application (16.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:18 -0400 Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-06 14:53:19 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (9.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:19 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-06 14:53:19 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.2ms) Rendered people/index.html.haml within layouts/application (14.0ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:19 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:20.837768"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:20.837768"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:53:20 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (18.9ms) Rendered people/edit.html.haml within layouts/application (21.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:20.882657"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:20.882657"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:20 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-06 14:53:21 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.5ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.8ms) commit transaction Redirected to http://127.0.0.1:53473/people Completed 302 Found in 6ms (ActiveRecord: 2.6ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:21 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.8ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:21 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:53:22 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.3ms) Rendered people/new.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-06 14:53:22 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"53", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.6ms) Rendered people/_form.html.haml (6.4ms) Rendered people/new.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 14ms (Views: 8.0ms | ActiveRecord: 0.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:53:22 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.0ms) Rendered people/new.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:22.838149"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:22.838149"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:53:22 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.4ms) Rendered people/edit.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:53:22 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.1ms) Rendered people/new.html.haml within layouts/application (8.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:22 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-06 14:53:23 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"14", "dob(5i)"=>"53", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:23.646479"], ["dob", "2012-08-06 14:53:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:23.646479"]]  (0.8ms) commit transaction Redirected to http://127.0.0.1:53473/people Completed 302 Found in 5ms (ActiveRecord: 1.2ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:23 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:53:23 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:24.482958"], ["dob", "2012-08-06 18:53:24.482006"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:24.482958"]]  (1.2ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:53:24 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (13.6ms) Rendered people/edit.html.haml within layouts/application (13.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-06 14:53:24 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"14", "dob(5i)"=>"53", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-06 14:53:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-06 18:53:24.528800"]]  (1.2ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 1.9ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:24 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.3ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:24.559153"], ["dob", "1984-08-06 18:53:00.304707"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:24.559153"]]  (1.3ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:53:24 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.5ms) Rendered people/edit.html.haml within layouts/application (7.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-06 14:53:24 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"53", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-06 18:53:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-06 18:53:24.583428"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:53:24 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.2ms) Rendered people/edit.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.5ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:53:24 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.3ms) Rendered people/new.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-06 14:53:24 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"53", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:24.631183"], ["dob", "2014-08-06 18:53:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-06 18:53:24.631183"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:24 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (4.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:53:24 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.6ms) Rendered people/new.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-06 14:53:24 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"53", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:24.672856"], ["dob", "2014-08-06 18:53:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-06 18:53:24.672856"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:53:24 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.3ms) Rendered people/new.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-08-06 18:53:53.688462"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.688462"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-06 14:53:53 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.0ms) Rendered credit_card_infos/index.html.haml within layouts/application (18.3ms) Rendered application/_flash_messages.html.haml (10.3ms) Completed 200 OK in 56ms (Views: 54.9ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-08-06 18:53:53.773088"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.773088"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-08-06 18:53:53.775680"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.775680"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-08-06 18:53:53.778179"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.778179"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-08-06 18:53:53.780598"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.780598"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-08-06 18:53:53.783177"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.783177"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-08-06 18:53:53.786366"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.786366"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-08-06 18:53:53.790020"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.790020"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-08-06 18:53:53.792861"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.792861"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-08-06 18:53:53.796067"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.796067"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-08-06 18:53:53.799310"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.799310"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-08-06 18:53:53.802467"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.802467"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-08-06 18:53:53.806596"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.806596"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-08-06 18:53:53.809511"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.809511"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-08-06 18:53:53.814137"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.814137"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-08-06 18:53:53.817441"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.817441"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-08-06 18:53:53.820281"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.820281"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-08-06 18:53:53.823253"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.823253"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-08-06 18:53:53.828021"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.828021"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-08-06 18:53:53.831379"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.831379"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-08-06 18:53:53.834463"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.834463"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-08-06 18:53:53.836996"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.836996"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-08-06 18:53:53.839410"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.839410"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-08-06 18:53:53.842962"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.842962"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-08-06 18:53:53.845536"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.845536"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-08-06 18:53:53.848050"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.848050"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-08-06 18:53:53.850489"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.850489"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-08-06 18:53:53.853026"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.853026"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-08-06 18:53:53.855344"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.855344"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-08-06 18:53:53.857826"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.857826"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-08-06 18:53:53.860197"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.860197"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-08-06 18:53:53.862630"], ["exp_date", "2016-08-06"], ["secret_code", "08da20c3d494d2bb"], ["updated_at", "2014-08-06 18:53:53.862630"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-06 14:53:53 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-08-06 14:53:53 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-08-06 14:53:53 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.4ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:58 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (1.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (12.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 102ms (Views: 98.1ms | ActiveRecord: 0.5ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:58.586384"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:58.586384"]]  (1.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:53:58 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.6ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:53:58 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (18.1ms) Rendered people/edit.html.haml within layouts/application (20.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.2ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:53:58.640240"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:53:58.640240"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:54:01 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.5ms) Rendered people/index.html.haml within layouts/application (10.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 16ms (Views: 13.2ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-06 14:54:01 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:01 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-06 14:54:02 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.5ms) commit transaction Redirected to http://127.0.0.1:54067/people Completed 302 Found in 6ms (ActiveRecord: 2.2ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 14:54:02 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:02 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:54:03 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:54:03 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:03 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-06 14:54:03 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:03 -0400  (1.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:54:03 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.518210"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.518210"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.521417"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.521417"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.524267"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.524267"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.527038"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.527038"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.529691"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.529691"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.532995"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.532995"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.537834"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.537834"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.541690"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.541690"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.544418"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.544418"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.547092"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.547092"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.550695"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.550695"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.553943"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.553943"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.557526"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.557526"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.561577"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.561577"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.564533"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.564533"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.567580"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.567580"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.570290"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.570290"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.573166"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.573166"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.576508"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.576508"]]  (1.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.580164"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.580164"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.582867"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.582867"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.586159"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.586159"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.588754"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.588754"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.591425"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.591425"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.594167"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.594167"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.596716"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.596716"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.599419"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.599419"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.602114"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.602114"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.606181"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.606181"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.608921"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.608921"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.611486"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.611486"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.614704"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.614704"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.617555"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.617555"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.621897"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.621897"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.624679"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.624679"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.627566"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.627566"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.630345"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.630345"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.633194"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.633194"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.636773"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.636773"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.640182"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.640182"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.643105"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.643105"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.645950"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.645950"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.649178"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.649178"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.652794"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.652794"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.655725"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_31@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.655725"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.659110"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.659110"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.661936"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.661936"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.664921"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.664921"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.670395"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.670395"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:03.674161"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:03.674161"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:54:03 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:03 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:05.899004"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_3@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:05.899004"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:05.904866"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_4@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:05.904866"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:05.907290"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_5@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:05.907290"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:05.909695"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_6@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:05.909695"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:05.912164"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:05.912164"]]  (2.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:54:05 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.5ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-06 14:54:05 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:05.948022"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_7@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:05.948022"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:54:05 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (3.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:05 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:54:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.233533"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.233533"]]  (2.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.237263"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.237263"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.239594"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.239594"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.243580"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.243580"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.248095"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.248095"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.250987"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.250987"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.254735"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.254735"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.258704"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.258704"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.262731"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.262731"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.265451"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.265451"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.267980"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.267980"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.270938"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.270938"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.273390"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.273390"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.277897"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.277897"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.282587"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.282587"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.287307"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.287307"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.291569"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.291569"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.295541"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.295541"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.300257"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.300257"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.305151"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.305151"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.309254"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.309254"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.313366"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.313366"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.317760"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.317760"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.320167"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.320167"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.324401"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.324401"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.328720"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.328720"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.333819"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.333819"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.336479"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.336479"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.340114"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.340114"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.344105"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.344105"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.346658"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.346658"]]  (2.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:54:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (9.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.5ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-06 14:54:06 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (9.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.5ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-06 14:54:06 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (13.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.5ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.8ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.6ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.429864"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.429864"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.432908"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.432908"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.437129"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.437129"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.440257"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.440257"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.445304"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.445304"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.449640"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.449640"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.452057"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.452057"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.456179"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.456179"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.458741"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.458741"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.462713"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.462713"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.466909"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.466909"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.471606"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.471606"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.474288"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.474288"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.478055"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.478055"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.482398"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.482398"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.486985"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.486985"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.491760"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.491760"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.495653"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.495653"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.498099"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.498099"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.502308"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.502308"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.506458"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.506458"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.510365"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.510365"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.514291"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.514291"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.516930"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.516930"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.520760"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.520760"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.524651"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.524651"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.527509"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.527509"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.529759"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.529759"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.532511"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.532511"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.537079"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.537079"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:06.541261"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:06.541261"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:54:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (9.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 10.9ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:06 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-06 14:54:06 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.7ms) Rendered people/index.html.haml within layouts/application (12.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:06 -0400  (43.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (55.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (4.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.361921"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.361921"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.365731"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.365731"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.370169"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.370169"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.374361"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.374361"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.378531"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.378531"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.380958"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.380958"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.383577"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.383577"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.386198"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.386198"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.390108"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.390108"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.394225"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.394225"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.396692"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.396692"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.401355"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.401355"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.404314"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.404314"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.406842"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.406842"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.410820"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.410820"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.415037"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.415037"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.420481"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.420481"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.424774"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.424774"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.428896"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.428896"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.433339"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.433339"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.438255"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.438255"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.442357"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.442357"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.446390"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.446390"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.450664"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.450664"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.454539"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.454539"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.458357"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.458357"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.462379"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.462379"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.464826"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.464826"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.467738"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.467738"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.472614"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.472614"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:07.476647"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:07.476647"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:54:07 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (18.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:07 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-06 14:54:07 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (9.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:07 -0400  (92.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (48.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.080067"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.080067"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.082976"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.082976"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.085794"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.085794"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.089852"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.089852"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.092392"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.092392"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.096254"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.096254"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.098950"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.098950"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.102454"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.102454"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.104864"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.104864"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.107338"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.107338"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.110859"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.110859"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.113313"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.113313"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.115791"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.115791"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.118247"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.118247"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.120651"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.120651"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.123691"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.123691"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.126442"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.126442"]]  (2.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.130195"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.130195"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.134717"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.134717"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.138194"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.138194"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.140642"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.140642"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.143447"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.143447"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.145861"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.145861"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.148481"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.148481"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.153003"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.153003"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.156289"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.156289"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.160317"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.160317"]]  (3.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.165776"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.165776"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.171084"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.171084"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.175374"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.175374"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.178406"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.178406"]]  (3.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:54:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (9.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.6ms)  (1.9ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.210553"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.210553"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.215007"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.215007"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.219125"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.219125"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.223015"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.223015"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.228552"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.228552"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.232682"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.232682"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.235242"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.235242"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.240209"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.240209"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.245394"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.245394"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.248238"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.248238"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.252872"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.252872"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.256112"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.256112"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.260627"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.260627"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.265040"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.265040"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.269335"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.269335"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.273285"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.273285"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.277724"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.277724"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.282397"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.282397"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.285518"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.285518"]]  (2.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.289336"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.289336"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.293466"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.293466"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.297367"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.297367"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.301919"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.301919"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.306298"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.306298"]]  (3.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.310878"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.310878"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.315606"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.315606"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.319799"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.319799"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.323910"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.323910"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.328117"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.328117"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.332277"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.332277"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:08.336699"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:08.336699"]]  (2.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:54:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (10.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:08 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-06 14:54:08 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (18.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 22ms (Views: 19.0ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:08 -0400  (125.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (89.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.424505"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.424505"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.428849"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.428849"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.433411"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.433411"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.438335"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.438335"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.442608"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.442608"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.447057"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.447057"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.451460"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.451460"]]  (239.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.693111"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.693111"]]  (9.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.704951"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.704951"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.709438"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.709438"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.713525"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.713525"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.717811"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.717811"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.721950"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.721950"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.726049"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.726049"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.730262"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.730262"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.735576"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.735576"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.739671"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.739671"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.743887"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.743887"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.748014"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.748014"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.752899"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.752899"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.757435"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.757435"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.761451"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.761451"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.765727"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.765727"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.769811"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.769811"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.774052"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.774052"]]  (9.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.785593"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.785593"]]  (7.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.795275"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.795275"]]  (7.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.804677"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.804677"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.809274"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.809274"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.814424"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.814424"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:09.819146"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:09.819146"]]  (20.4ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-06 14:54:09 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (8.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:09 -0400 Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-06 14:54:10 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.7ms) Rendered people/index.html.haml within layouts/application (9.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:10 -0400 Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-06 14:54:11 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (11.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:11 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-06 14:54:11 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (10.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.4ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:11 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:54:12 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.7ms) Rendered people/new.html.haml within layouts/application (8.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-06 14:54:12 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (1.6ms) Rendered people/_form.html.haml (10.3ms) Rendered people/new.html.haml within layouts/application (10.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 18ms (Views: 12.3ms | ActiveRecord: 0.1ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:54:12 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.0ms) Rendered people/new.html.haml within layouts/application (8.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:12.551530"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:12.551530"]]  (1.1ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:54:12 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.8ms) Rendered people/edit.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:54:12 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.5ms) Rendered people/new.html.haml within layouts/application (7.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:12 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-06 14:54:13 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"14", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:13.349754"], ["dob", "2012-08-06 14:54:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:13.349754"]]  (1.2ms) commit transaction Redirected to http://127.0.0.1:54067/people Completed 302 Found in 5ms (ActiveRecord: 1.8ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 14:54:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:54:13 -0400  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:14.174848"], ["dob", "2012-08-06 18:54:14.173989"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:14.174848"]]  (0.7ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:54:14 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (13.7ms) Rendered people/edit.html.haml within layouts/application (14.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-06 14:54:14 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"14", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-06 14:54:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-06 18:54:14.219602"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 7ms (ActiveRecord: 1.9ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 14:54:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (3.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.3ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (2.4ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:54:14 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.3ms) Rendered people/new.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-06 14:54:14 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:14.269690"], ["dob", "2014-08-06 18:54:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-06 18:54:14.269690"]]  (1.5ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.8ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:54:14 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.2ms) Rendered people/new.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:14.299209"], ["dob", "1984-08-06 18:53:50.875344"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:54:14.299209"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:54:14 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.4ms) Rendered people/edit.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-06 14:54:14 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"53", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.2ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-06 18:53:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-06 18:54:14.323164"]]  (1.2ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 4ms (ActiveRecord: 1.8ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:54:14 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.5ms) Rendered people/edit.html.haml within layouts/application (7.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.2ms)  (2.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:54:14 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.3ms) Rendered people/new.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-06 14:54:14 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:54:14.370415"], ["dob", "2014-08-06 18:54:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-06 18:54:14.370415"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 14:54:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.4ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:57:55 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.6ms) Rendered application/_search_form.html.haml (1.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (9.2ms) Rendered people/index.html.haml within layouts/application (27.0ms) Rendered application/_flash_messages.html.haml (13.5ms) Completed 200 OK in 68ms (Views: 64.1ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:57:55.826010"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:57:55.826010"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:57:55 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:57:55 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (16.6ms) Rendered people/edit.html.haml within layouts/application (18.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:57:55.911056"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:57:55.911056"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:57:58 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.7ms) Rendered application/_search_form.html.haml (1.0ms) Person Load (0.9ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (12.9ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 19ms (Views: 15.8ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-06 14:57:58 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 14:57:58 -0400  (0.3ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-06 14:57:59 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.5ms) commit transaction Redirected to http://127.0.0.1:54687/people Completed 302 Found in 6ms (ActiveRecord: 2.2ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 14:57:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms)  (0.2ms) SELECT COUNT(*) FROM "people"  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.515040"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.515040"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:58:00 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.837568"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.837568"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.840402"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.840402"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.843099"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.843099"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.845812"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.845812"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.848561"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.848561"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.851889"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.851889"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.854767"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.854767"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.857464"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.857464"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.859856"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.859856"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.862546"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.862546"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.865189"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.865189"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.867742"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.867742"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.870576"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.870576"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.873620"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.873620"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.876835"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.876835"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.880460"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.880460"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.883051"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.883051"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.886361"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.886361"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.888938"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.888938"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.891500"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.891500"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.894016"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.894016"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.897683"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.897683"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.900464"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.900464"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.903228"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.903228"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.905717"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.905717"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.908900"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.908900"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.911380"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.911380"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.914481"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.914481"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.917934"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.917934"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.920834"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.920834"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:00.924446"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:00.924446"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:58:00 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 12.9ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-06 14:58:00 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (11.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-06 14:58:00 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (72.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 75ms (Views: 73.8ms | ActiveRecord: 0.5ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:58:01 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.8ms) Rendered people/index.html.haml within layouts/application (2.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.085520"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.085520"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.089491"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.089491"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.092036"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.092036"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.094467"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.094467"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.097505"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.097505"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.099960"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.099960"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.102464"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.102464"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.104916"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.104916"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.108018"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.108018"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.110833"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.110833"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.114341"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.114341"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.116847"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.116847"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.119209"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.119209"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.121870"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.121870"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.124548"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.124548"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.127844"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.127844"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.130974"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.130974"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.133375"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.133375"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.135552"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.135552"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.137970"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.137970"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.140501"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.140501"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.142888"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.142888"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.145564"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.145564"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.150112"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.150112"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.153149"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.153149"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.155534"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.155534"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.158142"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.158142"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.160811"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.160811"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.163984"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.163984"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.167233"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.167233"]]  (1.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.170779"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.170779"]]  (1.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:58:01 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (9.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-06 14:58:01 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (12.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.6ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.907118"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.907118"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.911697"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.911697"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.914282"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.914282"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.917187"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.917187"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.919471"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.919471"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.921801"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.921801"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.924223"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.924223"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.926628"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.926628"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.929112"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.929112"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.932178"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.932178"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.936450"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.936450"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.939088"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.939088"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.941293"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.941293"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.944292"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.944292"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.949204"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.949204"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.952493"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.952493"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.955344"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.955344"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.957922"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.957922"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.960497"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.960497"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.963971"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.963971"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.966416"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.966416"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.968857"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.968857"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.971397"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.971397"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.974825"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.974825"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.977313"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.977313"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.979932"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.979932"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.982371"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.982371"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.984721"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.984721"]]  (2.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.988329"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.988329"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.990738"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.990738"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:01.993739"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:01.993739"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:58:01 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (9.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.1ms | ActiveRecord: 0.5ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.023095"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.023095"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.025728"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.025728"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.028606"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.028606"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.031567"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.031567"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.035461"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.035461"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.037778"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.037778"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.040284"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.040284"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.042675"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.042675"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.045107"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.045107"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.047688"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.047688"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.051790"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.051790"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.054428"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.054428"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.057689"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.057689"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.062133"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.062133"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.064920"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.064920"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.069725"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.069725"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.073672"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.073672"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.076318"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.076318"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.079818"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.079818"]]  (1.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.082914"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.082914"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.086968"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.086968"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.089514"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.089514"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.091846"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.091846"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.094422"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.094422"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.097217"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.097217"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.101379"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.101379"]]  (4.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.107965"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.107965"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.112900"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.112900"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.117643"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.117643"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.121782"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.121782"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.125642"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.125642"]]  (3.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:58:02 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (14.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.8ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-06 14:58:02 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (11.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 12.7ms | ActiveRecord: 0.9ms)  (4.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.603560"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.603560"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.607931"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.607931"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.611820"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.611820"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.615948"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.615948"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.618647"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.618647"]]  (2.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.622439"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.622439"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.626533"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.626533"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.629139"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.629139"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.633870"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.633870"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.636379"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.636379"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.641453"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.641453"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.646014"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.646014"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.649599"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.649599"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.653717"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.653717"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.656219"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.656219"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.660773"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.660773"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.665986"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.665986"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.669084"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.669084"]]  (4.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.676055"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.676055"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.684089"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.684089"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.689324"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.689324"]]  (17.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.708214"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.708214"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.712498"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.712498"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.715312"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.715312"]]  (2.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.719089"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.719089"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.723536"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.723536"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.727679"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.727679"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.732189"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.732189"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.736231"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.736231"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.738899"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.738899"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:02.742923"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:02.742923"]]  (3.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:58:02 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (10.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-06 14:58:03 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (17.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 21ms (Views: 18.3ms | ActiveRecord: 1.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.587778"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.587778"]]  (80.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.670588"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.670588"]]  (1.0ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.674152"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.674152"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.678435"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.678435"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.682928"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.682928"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.685536"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.685536"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.688079"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.688079"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.691687"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.691687"]]  (169.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.863417"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.863417"]]  (72.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.937709"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.937709"]]  (9.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.949079"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.949079"]]  (4.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.955154"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.955154"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.959860"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.959860"]]  (5.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.967039"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.967039"]]  (4.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.973444"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.973444"]]  (7.4ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.983581"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.983581"]]  (4.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.990637"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.990637"]]  (5.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:03.998021"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:03.998021"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:04.002361"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:04.002361"]]  (7.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:04.011546"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:04.011546"]]  (4.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:04.018089"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:04.018089"]]  (4.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:04.024311"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:04.024311"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:04.029598"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:04.029598"]]  (7.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:04.038937"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:04.038937"]]  (5.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:04.046581"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:04.046581"]]  (8.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:04.057450"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:04.057450"]]  (9.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:04.069000"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:04.069000"]]  (4.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:04.075564"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:04.075564"]]  (5.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:04.082912"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:04.082912"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:04.088108"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:04.088108"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:04.092694"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:04.092694"]]  (19.4ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-06 14:58:04 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (9.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.1ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-06 14:58:04 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (10.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 11.7ms | ActiveRecord: 0.6ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-06 14:58:05 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (11.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.7ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-06 14:58:05 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (1.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (5.1ms) Rendered people/index.html.haml within layouts/application (18.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.8ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:58:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.3ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:58:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 14:58:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.8ms) Rendered people/index.html.haml within layouts/application (2.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-06 14:58:07 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.8ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.216082"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.216082"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.219469"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.219469"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.222242"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.222242"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.224603"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.224603"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.227043"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.227043"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.229430"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.229430"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.231829"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.231829"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.234406"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.234406"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.236809"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.236809"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.239406"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.239406"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.241947"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.241947"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.244514"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.244514"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.247192"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.247192"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.249828"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.249828"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.252572"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.252572"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.255970"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.255970"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.266120"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.266120"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.270615"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.270615"]]  (1.0ms) commit transaction  (0.3ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.273919"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.273919"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.276540"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.276540"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.279547"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.279547"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.283080"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.283080"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.287081"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.287081"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.290424"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.290424"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.293068"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.293068"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.296418"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.296418"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.300134"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.300134"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.303113"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.303113"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.306841"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.306841"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.310056"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.310056"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.313095"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.313095"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.316186"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.316186"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.319227"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.319227"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.322344"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.322344"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.325672"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.325672"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.330084"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.330084"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.333963"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.333963"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.336989"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.336989"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.340331"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.340331"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.343390"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.343390"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.346233"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.346233"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.349254"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.349254"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.353116"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.353116"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.356136"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.356136"]]  (4.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.362383"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.362383"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.365411"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.365411"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.368446"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.368446"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.372704"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.372704"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.376474"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.376474"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:07.379515"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:07.379515"]]  (7.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:58:07 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (17.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 21ms (Views: 18.7ms | ActiveRecord: 1.0ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-08-06 14:58:07 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.9ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (13.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 14.5ms | ActiveRecord: 1.0ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (5.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:08.791700"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_190@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:08.791700"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:08.794513"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_191@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:08.794513"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:08.797850"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_192@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:08.797850"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:08.800623"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_193@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:08.800623"]]  (2.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:08.804468"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:08.804468"]]  (2.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 14:58:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.3ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-06 14:58:08 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.3ms | ActiveRecord: 0.5ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:58:08 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.7ms) Rendered people/new.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 10.2ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-06 14:58:08 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"58", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (1.7ms) Rendered people/_form.html.haml (6.5ms) Rendered people/new.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 14ms (Views: 8.6ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:58:08 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.2ms) Rendered people/new.html.haml within layouts/application (7.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)  (2.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:08.917575"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:08.917575"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:58:08 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.4ms) Rendered people/edit.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.6ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:58:08 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.7ms) Rendered people/new.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-06 14:58:09 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"14", "dob(5i)"=>"58", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:09.778764"], ["dob", "2012-08-06 14:58:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:09.778764"]]  (1.7ms) commit transaction Redirected to http://127.0.0.1:54687/people Completed 302 Found in 6ms (ActiveRecord: 2.4ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 14:58:09 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 9.3ms | ActiveRecord: 0.5ms)  (9.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:10.754733"], ["dob", "2012-08-06 18:58:10.753817"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:10.754733"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:58:10 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.9ms) Rendered people/edit.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-06 14:58:10 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"14", "dob(5i)"=>"58", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-06 14:58:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-06 18:58:10.789218"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 14:58:10 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (12.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.4ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:58:10 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.6ms) Rendered people/new.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-06 14:58:10 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"58", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:10.851171"], ["dob", "2014-08-06 18:58:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-06 18:58:10.851171"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:58:10 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.3ms) Rendered people/new.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 14:58:10 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.6ms) Rendered people/new.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-06 14:58:10 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"58", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:10.901373"], ["dob", "2014-08-06 18:58:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-06 18:58:10.901373"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.2ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 14:58:10 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (5.0ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.4ms)  (1.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 18:58:10.925292"], ["dob", "1984-08-06 18:57:52.871036"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 18:58:10.925292"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:58:10 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.1ms) Rendered people/edit.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-06 14:58:10 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"57", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-06 18:57:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-06 18:58:10.949131"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 4ms (ActiveRecord: 1.5ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 14:58:10 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.6ms) Rendered people/edit.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.1ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DROP TABLE "credit_card_infos"  (2.6ms) CREATE TABLE "credit_card_infos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "cardholder" varchar(255), "exp_date" date, "secret_code" varchar(255), "created_at" datetime, "updated_at" datetime)   (1.4ms) CREATE TABLE "dinosaurs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" varchar(255), "good_dino" boolean, "created_at" datetime, "updated_at" datetime)  (1.6ms) DROP TABLE "people"  (1.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "email" varchar(255), "title" varchar(255), "dob" datetime, "is_manager" boolean, "created_at" datetime, "updated_at" datetime)  (0.1ms) SELECT version FROM "schema_migrations"  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140806202909') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.2ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.3ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-08-06 22:15:48.158481"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.158481"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-06 18:15:48 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (20.9ms) Rendered application/_flash_messages.html.haml (10.8ms) Completed 200 OK in 84ms (Views: 82.7ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-08-06 22:15:48.300856"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.300856"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-08-06 22:15:48.303688"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.303688"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-08-06 22:15:48.306246"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.306246"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-08-06 22:15:48.308683"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.308683"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-08-06 22:15:48.311055"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.311055"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-08-06 22:15:48.314637"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.314637"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-08-06 22:15:48.317342"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.317342"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-08-06 22:15:48.320128"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.320128"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-08-06 22:15:48.323194"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.323194"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-08-06 22:15:48.325446"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.325446"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-08-06 22:15:48.327896"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.327896"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-08-06 22:15:48.330405"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.330405"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-08-06 22:15:48.333098"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.333098"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-08-06 22:15:48.336339"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.336339"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-08-06 22:15:48.340613"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.340613"]]  (1.7ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-08-06 22:15:48.345639"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.345639"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-08-06 22:15:48.351242"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.351242"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-08-06 22:15:48.354710"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.354710"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-08-06 22:15:48.359997"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.359997"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-08-06 22:15:48.363372"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.363372"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-08-06 22:15:48.367040"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.367040"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-08-06 22:15:48.369892"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.369892"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-08-06 22:15:48.373232"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.373232"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-08-06 22:15:48.376233"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.376233"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-08-06 22:15:48.378758"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.378758"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-08-06 22:15:48.381288"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.381288"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-08-06 22:15:48.383938"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.383938"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-08-06 22:15:48.386946"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.386946"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-08-06 22:15:48.390151"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.390151"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-08-06 22:15:48.392740"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.392740"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-08-06 22:15:48.395340"], ["exp_date", "2016-08-06"], ["secret_code", "956c0ad0cf91f039"], ["updated_at", "2014-08-06 22:15:48.395340"]]  (1.3ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-06 18:15:48 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.5ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 18:15:52 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.6ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (12.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 99ms (Views: 95.4ms | ActiveRecord: 0.5ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:53.014222"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:53.014222"]]  (1.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 18:15:53 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 18:15:53 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (42.5ms) Rendered people/edit.html.haml within layouts/application (44.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 47ms (Views: 46.0ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:53.082165"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:53.082165"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 18:15:56 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (8.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 13ms (Views: 10.3ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-06 18:15:56 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 18:15:56 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-06 18:15:57 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.6ms) commit transaction Redirected to http://127.0.0.1:58343/people Completed 302 Found in 5ms (ActiveRecord: 2.2ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 18:15:57 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 18:15:57 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.8ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 18:15:58 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 18:15:58 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 18:15:58 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-06 18:15:58 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 18:15:58 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 18:15:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.055947"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.055947"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.059056"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.059056"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.061653"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.061653"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.064457"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.064457"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.067315"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.067315"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.070265"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.070265"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.072955"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.072955"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.076608"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.076608"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.079318"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.079318"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.082503"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.082503"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.085803"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.085803"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.088588"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.088588"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.091188"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.091188"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.094743"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.094743"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.097998"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.097998"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.100679"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.100679"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.104235"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.104235"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.107031"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.107031"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.109524"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.109524"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.112035"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.112035"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.114550"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.114550"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.117301"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.117301"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.120414"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.120414"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.123190"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.123190"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.125720"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.125720"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.128174"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.128174"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.130987"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.130987"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.133616"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.133616"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.136967"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.136967"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.140359"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.140359"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.144650"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.144650"]]  (126.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.307947"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.307947"]]  (240.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.551444"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.551444"]]  (30.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.585041"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.585041"]]  (32.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.620823"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.620823"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.625878"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.625878"]]  (11.5ms) commit transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.648365"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.648365"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.652567"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_20@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.652567"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.656325"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.656325"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.659745"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.659745"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.663180"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.663180"]]  (15.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.681178"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.681178"]]  (18.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.701195"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.701195"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.704549"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.704549"]]  (1.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.707954"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.707954"]]  (8.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.718205"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.718205"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.723123"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.723123"]]  (20.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.745269"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.745269"]]  (21.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.769131"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.769131"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:15:59.771949"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:15:59.771949"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 18:15:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (10.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 18:15:59 -0400  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:01.995490"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_3@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:01.995490"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:02.000850"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_4@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:02.000850"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:02.006297"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_5@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:02.006297"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:02.010582"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_6@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:02.010582"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:02.015056"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:02.015056"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 18:16:02 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 12ms (Views: 10.4ms | ActiveRecord: 0.5ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-06 18:16:02 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (10.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.6ms)  (171.1ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (208.1ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (392.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (43.5ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:02.888627"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_7@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:02.888627"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 18:16:02 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 18:16:02 -0400  (1.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (9.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (14.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-06 18:16:05 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.3ms)  (10.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (8.6ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.188474"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.188474"]]  (6.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.197039"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.197039"]]  (7.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.207533"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.207533"]]  (12.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.221961"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.221961"]]  (13.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.237773"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.237773"]]  (5.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.245280"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.245280"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.248438"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.248438"]]  (11.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.262106"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.262106"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.265809"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.265809"]]  (11.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.279956"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.279956"]]  (6.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.288860"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.288860"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.292243"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.292243"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.296124"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.296124"]]  (11.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.309508"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.309508"]]  (10.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.322561"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.322561"]]  (6.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.332050"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.332050"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.335619"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.335619"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.338228"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.338228"]]  (25.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.365383"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.365383"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.368130"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.368130"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.370829"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.370829"]]  (17.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.390668"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.390668"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.394040"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.394040"]]  (7.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.404173"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.404173"]]  (8.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.414580"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.414580"]]  (31.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.448934"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.448934"]]  (8.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.459259"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.459259"]]  (12.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.473454"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.473454"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.477012"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.477012"]]  (14.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.493780"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.493780"]]  (35.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.531705"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.531705"]]  (1.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 18:16:05 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.7ms) Rendered people/index.html.haml within layouts/application (15.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.9ms)  (10.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.581290"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.581290"]]  (15.9ms) commit transaction  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.599390"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.599390"]]  (10.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.611704"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.611704"]]  (10.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.624239"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.624239"]]  (37.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.663952"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.663952"]]  (11.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.678418"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.678418"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.681982"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.681982"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.686049"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.686049"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.689404"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.689404"]]  (35.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.727413"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.727413"]]  (11.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.741871"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.741871"]]  (8.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.752390"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.752390"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.755114"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.755114"]]  (49.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.806614"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.806614"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.810060"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.810060"]]  (10.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.822157"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.822157"]]  (15.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.839483"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.839483"]]  (14.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.856122"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.856122"]]  (14.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.872416"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.872416"]]  (9.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.884157"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.884157"]]  (10.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.896690"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.896690"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.899478"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.899478"]]  (51.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.953330"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.953330"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.956278"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.956278"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.959258"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.959258"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.962303"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.962303"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.965344"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.965344"]]  (6.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:05.973783"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:05.973783"]]  (25.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.001972"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.001972"]]  (11.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.015375"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.015375"]]  (6.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.024524"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.024524"]]  (8.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 18:16:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (10.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 18:16:06 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-06 18:16:06 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (14.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 18:16:06 -0400  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.850106"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.850106"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.852861"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.852861"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.855099"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.855099"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.857438"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.857438"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.859833"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.859833"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.863179"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.863179"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.866227"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.866227"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.868602"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.868602"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.870885"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.870885"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.873618"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.873618"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.876603"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.876603"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.879480"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.879480"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.883427"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.883427"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.886941"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.886941"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.889966"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.889966"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.892877"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.892877"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.895613"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.895613"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.898596"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.898596"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.901266"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.901266"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.903746"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.903746"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.906366"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.906366"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.908735"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.908735"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.911977"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.911977"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.915593"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.915593"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.917987"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.917987"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.920718"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.920718"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.923453"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.923453"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.925982"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.925982"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.928912"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.928912"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.931813"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.931813"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:06.935291"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:06.935291"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 18:16:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (11.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 18:16:06 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-06 18:16:07 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (7.0ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (10.8ms) Rendered people/index.html.haml within layouts/application (18.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 21ms (Views: 13.1ms | ActiveRecord: 7.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 18:16:07 -0400  (2.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.9ms) DELETE FROM "dinosaurs";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.437255"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.437255"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.440056"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.440056"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.442482"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.442482"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.444845"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.444845"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.447457"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.447457"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.451239"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.451239"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.453716"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.453716"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.456197"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.456197"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.458729"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.458729"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.461278"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.461278"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.464189"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.464189"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.467638"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.467638"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.470423"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.470423"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.472927"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.472927"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.475333"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.475333"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.477859"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.477859"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.480811"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.480811"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.483758"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.483758"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.486213"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.486213"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.488884"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.488884"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.493335"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.493335"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.496247"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.496247"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.499137"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.499137"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.502693"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.502693"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.505873"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.505873"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.508357"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.508357"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.510809"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.510809"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.513350"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.513350"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.516244"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.516244"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.520232"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.520232"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.523131"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.523131"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 18:16:07 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.7ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.552850"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.552850"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.555607"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.555607"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.558469"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.558469"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.561092"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.561092"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.564115"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.564115"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.566879"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.566879"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.569466"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.569466"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.571993"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.571993"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.574260"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.574260"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.576722"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.576722"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.579940"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.579940"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.583422"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.583422"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.585935"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.585935"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.588453"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.588453"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.590881"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.590881"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.593559"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.593559"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.596168"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.596168"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.599459"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.599459"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.602433"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.602433"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.604919"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.604919"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.607388"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.607388"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.609741"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.609741"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.612609"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.612609"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.615386"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.615386"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.617754"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.617754"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.620319"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.620319"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.622845"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.622845"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.625456"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.625456"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.628623"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.628623"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.631731"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.631731"]]  (3.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:07.637806"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:07.637806"]]  (2.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-06 18:16:07 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 18:16:07 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-06 18:16:07 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.8ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (18.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 22ms (Views: 19.4ms | ActiveRecord: 1.1ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 18:16:07 -0400  (3.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.3ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.458301"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.458301"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.460808"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.460808"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.463863"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.463863"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.466395"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.466395"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.469084"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.469084"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.472036"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.472036"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.474724"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.474724"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.477323"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.477323"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.479949"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.479949"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.483269"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.483269"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.486243"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.486243"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (1.0ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.488997"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.488997"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.493210"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.493210"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.495917"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.495917"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.499116"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.499116"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.502123"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.502123"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.505004"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.505004"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.507652"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.507652"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.510672"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.510672"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.513321"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.513321"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.517733"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.517733"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.521426"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.521426"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.524315"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.524315"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.527512"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.527512"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.530440"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.530440"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.533329"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.533329"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.536143"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.536143"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.538784"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.538784"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.541433"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.541433"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.543916"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.543916"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:08.546736"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:08.546736"]]  (1.4ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-06 18:16:08 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.1ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 18:16:08 -0400  (3.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.9ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.7ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 18:16:10 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.5ms) Rendered people/new.html.haml within layouts/application (8.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-06 18:16:10 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"22", "dob(5i)"=>"16", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (1.6ms) Rendered people/_form.html.haml (6.2ms) Rendered people/new.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 13ms (Views: 7.9ms | ActiveRecord: 0.1ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 18:16:11 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.0ms) Rendered people/new.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:11.043374"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:11.043374"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 18:16:11 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (9.9ms) Rendered people/edit.html.haml within layouts/application (10.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 18:16:11 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.6ms) Rendered people/new.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 18:16:11 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-06 18:16:11 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"16", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:11.921857"], ["dob", "2012-08-06 18:16:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:11.921857"]]  (1.1ms) commit transaction Redirected to http://127.0.0.1:58343/people Completed 302 Found in 5ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 18:16:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (5.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-06 18:16:11 -0400  (4.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:12.783937"], ["dob", "2012-08-06 22:16:12.782833"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:12.783937"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 18:16:12 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.7ms) Rendered people/edit.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-06 18:16:12 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"18", "dob(5i)"=>"16", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-06 18:16:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-06 22:16:12.820490"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 18:16:12 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.4ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 18:16:12 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.8ms) Rendered people/new.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-06 18:16:12 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"22", "dob(5i)"=>"16", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:12.870145"], ["dob", "2014-08-06 22:16:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-06 22:16:12.870145"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-06 18:16:12 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.2ms) Rendered people/new.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:12.899628"], ["dob", "1984-08-06 22:15:44.931651"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-06 22:16:12.899628"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 18:16:12 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.0ms) Rendered people/edit.html.haml within layouts/application (8.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-06 18:16:12 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"22", "dob(5i)"=>"15", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-06 22:15:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-06 22:16:12.924820"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-06 18:16:12 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.1ms) Rendered people/edit.html.haml within layouts/application (8.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-06 18:16:12 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.1ms) Rendered people/new.html.haml within layouts/application (8.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-06 18:16:12 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"6", "dob(4i)"=>"22", "dob(5i)"=>"16", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-06 22:16:12.977628"], ["dob", "2014-08-06 22:16:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-06 22:16:12.977628"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-08-06 18:16:12 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (5.2ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.4ms) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ----------------------------------------------------------------- MultModelCS: test_locale_file_has_correct_entries_for_both_models -----------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ----------------------------------------------------------------- MultModelCS: test_locale_file_has_correct_entries_for_both_models -----------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ----------------------------------------------------------------- MultModelCS: test_locale_file_has_correct_entries_for_both_models -----------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ----------------------------------------------------------------- MultModelCS: test_locale_file_has_correct_entries_for_both_models ----------------------------------------------------------------- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (7.0ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.9ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.6ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.7ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.8ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.8ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.5ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.8ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.3ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (8.0ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.9ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.8ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.7ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.8ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.5ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.6ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.7ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.6ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.7ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (9.0ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (7.1ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.9ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.4ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.7ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.5ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (7.2ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos"; ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (7.0ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.7ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.9ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.8ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (7.0ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.8ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.6ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.9ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.7ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.7ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (9.8ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.9ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.8ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.5ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.2ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.4ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (7.3ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (9.2ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.9ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (8.6ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.7ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.7ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.8ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.7ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.9ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (6.6ms) DELETE FROM "credit_card_infos"; SQLite3::BusyException: database is locked: DELETE FROM "credit_card_infos";  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ----------------------------------------------------------------- MultModelCS: test_locale_file_has_correct_entries_for_both_models -----------------------------------------------------------------  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-08-07 19:02:11.521199"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.521199"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-07 15:02:11 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.4ms) Rendered credit_card_infos/index.html.haml within layouts/application (45.4ms) Rendered application/_flash_messages.html.haml (9.6ms) Completed 200 OK in 122ms (Views: 120.6ms | ActiveRecord: 0.4ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-08-07 19:02:11.674744"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.674744"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-08-07 19:02:11.677624"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.677624"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-08-07 19:02:11.680494"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.680494"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-08-07 19:02:11.682970"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.682970"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-08-07 19:02:11.685366"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.685366"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-08-07 19:02:11.687771"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.687771"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-08-07 19:02:11.690182"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.690182"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-08-07 19:02:11.692724"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.692724"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-08-07 19:02:11.695282"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.695282"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-08-07 19:02:11.697759"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.697759"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-08-07 19:02:11.700232"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.700232"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-08-07 19:02:11.703063"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.703063"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-08-07 19:02:11.706606"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.706606"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-08-07 19:02:11.709114"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.709114"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-08-07 19:02:11.711621"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.711621"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-08-07 19:02:11.717640"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.717640"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-08-07 19:02:11.722425"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.722425"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-08-07 19:02:11.725488"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.725488"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-08-07 19:02:11.729897"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.729897"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-08-07 19:02:11.733844"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.733844"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-08-07 19:02:11.737978"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.737978"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-08-07 19:02:11.741621"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.741621"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-08-07 19:02:11.747105"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.747105"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-08-07 19:02:11.749829"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.749829"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-08-07 19:02:11.752412"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.752412"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-08-07 19:02:11.755806"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.755806"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-08-07 19:02:11.758382"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.758382"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-08-07 19:02:11.760855"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.760855"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-08-07 19:02:11.764167"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.764167"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-08-07 19:02:11.766963"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.766963"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-08-07 19:02:11.769599"], ["exp_date", "2016-08-07"], ["secret_code", "39e975a69e8ceced"], ["updated_at", "2014-08-07 19:02:11.769599"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-07 15:02:11 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-08-07 15:02:11 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-08-07 15:02:11 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.4ms)  (1.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.6ms) Rendered application/_search_form.html.haml (1.7ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (15.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 36ms (Views: 32.1ms | ActiveRecord: 0.5ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.6ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 11ms (Views: 8.9ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-07 15:02:19 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 15:02:19 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-07 15:02:20 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 15:02:20 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (3.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (2.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.434442"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.434442"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.438340"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.438340"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.441554"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.441554"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.444572"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.444572"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.447342"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.447342"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.451243"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.451243"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.454234"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.454234"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.457118"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.457118"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.460089"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.460089"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.462884"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.462884"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.465956"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.465956"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.468621"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.468621"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.471842"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.471842"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.475714"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.475714"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.478535"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.478535"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.481362"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.481362"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.484252"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.484252"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.486850"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.486850"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.490561"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.490561"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.494160"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.494160"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.496796"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.496796"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.499620"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.499620"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.503636"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.503636"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.506672"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.506672"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.510037"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.510037"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.514352"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.514352"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.518015"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.518015"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.520606"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.520606"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.523231"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.523231"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.526421"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.526421"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.529219"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.529219"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.532239"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.532239"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.535222"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.535222"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.538353"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.538353"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.541672"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.541672"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.545355"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.545355"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.548874"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.548874"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.551773"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.551773"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.554605"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.554605"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.558521"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.558521"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.561470"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.561470"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.565051"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.565051"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.568543"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.568543"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.571726"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.571726"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.575827"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.575827"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.579588"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.579588"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.582672"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.582672"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.585837"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.585837"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.588779"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.588779"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:20.591745"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:20.591745"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (14.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 15:02:20 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.881011"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_1@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.881011"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.884566"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_2@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.884566"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.888147"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_3@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.888147"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.890652"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_4@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.890652"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.893271"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.893271"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:22 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-07 15:02:22 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.4ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.6ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:22 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.945837"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_5@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.945837"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.948582"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_6@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.948582"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.950988"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_7@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.950988"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.953521"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.953521"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.956145"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.956145"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.958748"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.958748"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.961649"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.961649"]]  (3.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.967177"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.967177"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.969997"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.969997"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.972409"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.972409"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.974763"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.974763"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.977652"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.977652"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.980410"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.980410"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.982905"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.982905"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.985270"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.985270"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.987691"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.987691"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.991299"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.991299"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.993737"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.993737"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.996470"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.996470"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:22.999238"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:22.999238"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:23.001859"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:23.001859"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:23.004486"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:23.004486"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:23.007020"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:23.007020"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:23.009489"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:23.009489"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:23.011912"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:23.011912"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:23.014690"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:23.014690"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:23.017196"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:23.017196"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:23.019820"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:23.019820"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:23.022289"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:23.022289"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:23.024769"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:23.024769"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:23.027187"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:23.027187"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:23 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (10.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.6ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.9ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:23.069557"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:23.069557"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:23 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 15:02:23 -0400  (7.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.342143"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.342143"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.345201"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.345201"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.347797"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.347797"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.350236"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.350236"]]  (1.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.353540"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.353540"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.356763"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.356763"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.359376"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.359376"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.362018"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.362018"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.364939"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.364939"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.367443"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.367443"]]  (4.7ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.374379"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.374379"]]  (3.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.384765"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.384765"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.389518"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.389518"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.395014"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.395014"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.399770"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.399770"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.402811"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.402811"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.406762"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.406762"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.409413"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.409413"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.411927"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.411927"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.414818"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.414818"]]  (2.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.418578"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.418578"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.422715"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.422715"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.425503"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.425503"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.429683"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.429683"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.433771"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.433771"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.436371"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.436371"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.439005"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.439005"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.441535"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.441535"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.443958"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.443958"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.446253"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.446253"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.448945"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.448945"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:25 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (11.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 15:02:25 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-07 15:02:25 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.2ms) Rendered people/index.html.haml within layouts/application (10.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 15:02:25 -0400  (17.9ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.942368"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.942368"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.946432"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.946432"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.948971"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.948971"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.951744"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.951744"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.954564"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.954564"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.958627"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.958627"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.961029"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.961029"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.963521"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.963521"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.968034"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.968034"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.971181"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.971181"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.973633"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.973633"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.976228"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.976228"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.980095"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.980095"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.984294"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.984294"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.986981"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.986981"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.989393"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.989393"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.992422"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.992422"]]  (2.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.996060"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.996060"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:25.998826"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:25.998826"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.002881"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.002881"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.005826"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.005826"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.010595"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.010595"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.013477"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.013477"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.016129"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.016129"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.020256"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.020256"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.024408"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.024408"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.027052"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.027052"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.031106"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.031106"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.033722"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.033722"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.037973"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.037973"]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.042716"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.042716"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:26 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (10.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.6ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.077382"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.077382"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.081943"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.081943"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.084794"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.084794"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.087446"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.087446"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.090040"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.090040"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.093926"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.093926"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.098065"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.098065"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.102548"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.102548"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.106710"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.106710"]]  (2.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.110957"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.110957"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.115764"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.115764"]]  (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.120931"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.120931"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.125257"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.125257"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.129371"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.129371"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.131903"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.131903"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.136357"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.136357"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.141356"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.141356"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.143915"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.143915"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.146727"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.146727"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.149628"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.149628"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.153834"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.153834"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.157980"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.157980"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.161514"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.161514"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.165822"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.165822"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.169976"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.169976"]]  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.174007"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.174007"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.177011"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.177011"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.181040"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.181040"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.185223"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.185223"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.189410"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.189410"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:26.192347"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:26.192347"]]  (1.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:26 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (10.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.9ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 15:02:26 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-07 15:02:26 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (14.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 15:02:26 -0400  (59.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (33.6ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (12.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.6ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.027461"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.027461"]]  (33.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.063565"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.063565"]]  (38.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.104388"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.104388"]]  (8.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.115259"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.115259"]]  (42.6ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.160370"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.160370"]]  (7.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.170606"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.170606"]]  (9.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.181646"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.181646"]]  (34.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.218495"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.218495"]]  (11.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.232140"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.232140"]]  (39.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.273642"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.273642"]]  (8.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.284611"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.284611"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.290465"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.290465"]]  (30.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.322961"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.322961"]]  (11.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.336419"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.336419"]]  (12.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.350943"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.350943"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.355609"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.355609"]]  (6.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.364238"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.364238"]]  (8.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.374950"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.374950"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.378485"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.378485"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.381112"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.381112"]]  (9.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.392124"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.392124"]]  (8.7ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.403015"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.403015"]]  (13.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.418797"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.418797"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.429858"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.429858"]]  (34.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.466961"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.466961"]]  (22.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.491146"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.491146"]]  (35.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.531849"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.531849"]]  (4.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.539168"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.539168"]]  (7.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.549652"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.549652"]]  (8.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.560066"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.560066"]]  (9.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:27.571250"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:27.571250"]]  (31.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:27 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (10.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 15:02:27 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-07 15:02:27 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.1ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (18.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 1.1ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 15:02:27 -0400  (72.9ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (42.5ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (11.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (8.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.460197"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.460197"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.463915"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.463915"]]  (16.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.482149"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.482149"]]  (13.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.498220"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.498220"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.501426"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.501426"]]  (15.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.519204"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.519204"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.522153"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.522153"]]  (8.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.532700"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.532700"]]  (8.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.543582"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.543582"]]  (9.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.555707"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.555707"]]  (19.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.576970"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.576970"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.579863"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.579863"]]  (7.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.589932"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.589932"]]  (15.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.608171"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.608171"]]  (12.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.623927"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.623927"]]  (7.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.633584"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.633584"]]  (14.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.649907"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.649907"]]  (21.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.673870"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.673870"]]  (10.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.686077"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.686077"]]  (48.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.736948"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.736948"]]  (12.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.751705"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.751705"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.755820"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.755820"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.759957"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.759957"]]  (45.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.808990"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.808990"]]  (16.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.828225"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.828225"]]  (5.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.835330"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.835330"]]  (19.2ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.857266"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.857266"]]  (12.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.872567"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.872567"]]  (44.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.919175"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.919175"]]  (13.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.934997"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.934997"]]  (20.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:29.957072"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:29.957072"]]  (10.9ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-07 15:02:30 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.2ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 15:02:30 -0400  (125.0ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (23.8ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:32.411376"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:32.411376"]]  (2.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:32 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 15:02:32 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (18.2ms) Rendered people/edit.html.haml within layouts/application (20.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.2ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.3ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (3.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:32.464680"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:32.464680"]]  (2.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:32 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 15:02:32 -0400  (0.1ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-07 15:02:33 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (135.3ms) commit transaction Redirected to http://127.0.0.1:49227/people Completed 302 Found in 138ms (ActiveRecord: 135.8ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:33 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (2.9ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 15:02:33 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (3.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.4ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (3.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 15:02:34 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.7ms) Rendered people/new.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-07 15:02:34 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"7", "dob(4i)"=>"19", "dob(5i)"=>"02", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (1.8ms) Rendered people/_form.html.haml (9.1ms) Rendered people/new.html.haml within layouts/application (9.3ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 17ms (Views: 10.6ms | ActiveRecord: 0.1ms)  (3.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (3.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 15:02:34 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.0ms) Rendered people/new.html.haml within layouts/application (6.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (202.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:34.667024"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:34.667024"]]  (9.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 15:02:34 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.8ms) Rendered people/edit.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.2ms)  (3.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (3.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 15:02:34 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (15.5ms) Rendered people/new.html.haml within layouts/application (15.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 15:02:34 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-07 15:02:35 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"7", "dob(4i)"=>"15", "dob(5i)"=>"02", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:35.513226"], ["dob", "2012-08-07 15:02:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:35.513226"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:49227/people Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 15:02:35 -0400  (3.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (3.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:36.453091"], ["dob", "2012-08-07 19:02:36.452180"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:36.453091"]]  (2.6ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 15:02:36 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.4ms) Rendered people/edit.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-07 15:02:36 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"7", "dob(4i)"=>"15", "dob(5i)"=>"02", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.2ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-07 15:02:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-07 19:02:36.488478"]]  (3.0ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 7ms (ActiveRecord: 3.5ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.4ms)  (3.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (3.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:36.526594"], ["dob", "1984-08-07 19:02:08.745814"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-07 19:02:36.526594"]]  (1.2ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 15:02:36 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.7ms) Rendered people/edit.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-07 15:02:36 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"7", "dob(4i)"=>"19", "dob(5i)"=>"02", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-07 19:02:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-07 19:02:36.549699"]]  (2.9ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 6ms (ActiveRecord: 3.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 15:02:36 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.3ms) Rendered people/edit.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.1ms)  (3.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 15:02:36 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.6ms) Rendered people/new.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-07 15:02:36 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"7", "dob(4i)"=>"19", "dob(5i)"=>"02", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:36.600800"], ["dob", "2014-08-07 19:02:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-07 19:02:36.600800"]]  (2.4ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 2.8ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 15:02:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.4ms)  (4.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (3.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (3.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 15:02:36 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.6ms) Rendered people/new.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-07 15:02:36 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"7", "dob(4i)"=>"19", "dob(5i)"=>"02", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-07 19:02:36.651300"], ["dob", "2014-08-07 19:02:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-07 19:02:36.651300"]]  (2.4ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 5ms (ActiveRecord: 2.8ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-07 15:02:36 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.8ms) Rendered people/new.html.haml within layouts/application (8.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ----------------------------------------------------------------- MultModelCS: test_locale_file_has_correct_entries_for_both_models -----------------------------------------------------------------  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ----------------------------------------------------------------- MultModelCS: test_locale_file_has_correct_entries_for_both_models -----------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ----------------------------------------------------------------- MultModelCS: test_locale_file_has_correct_entries_for_both_models -----------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction ----------------------------------------------------------------- MultModelCS: test_locale_file_has_correct_entries_for_both_models -----------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------------------------- SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ---------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created ------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ------------------------------------------------------------------------------------------ ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files ------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction -------------------------------------------------------------------------------------- AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions --------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- DestroyCsTest: test_All_approppriate_pieces_are_present_after_generate_is_run -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ------------------------------------------------------------------------------------------------------ DestroyCsTest: test_All_traces_of_controller_generator-generated_code_are_removed_after_destroy_is_run ------------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction -------------------------------------------------------------------------------------------------- DestroyCsTest: test_None_of_the_scaffold_generator_files_or_code_exists_prior_to_running_generator --------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions ----------------------------------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ---------------------------------------------------------------------- ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly ----------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_dinosaur_model -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction --------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_people_model ---------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ----------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_dinosaur_model -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction --------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_people_model ---------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ----------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_dinosaur_model -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_people_model ---------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ----------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_dinosaur_model -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction --------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_people_model ---------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_dinosaur_model -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction --------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_people_model ---------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_dinosaur_model -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_people_model ---------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction ----------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_dinosaur_model -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_people_model ---------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ----------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_dinosaur_model -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_people_model ---------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ----------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_dinosaur_model -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_people_model ---------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ----------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_dinosaur_model -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction --------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_people_model ---------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ----------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_dinosaur_model -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.1ms) begin transaction --------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_people_model ---------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction --------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_both_models ---------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction ----------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_dinosaur_model -----------------------------------------------------------------------------  (0.1ms) rollback transaction  (0.0ms) begin transaction --------------------------------------------------------------------------- MultModelCSTest: test_locale_file_has_correct_entries_for_just_people_model ---------------------------------------------------------------------------  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.6ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:34:28 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (50.1ms) Rendered people/new.html.haml within layouts/application (68.8ms) Rendered application/_flash_messages.html.haml (22.5ms) Completed 200 OK in 155ms (Views: 151.7ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-08-07 23:34:28 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"03", "dob(5i)"=>"34", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.7ms) Rendered people/_form.html.haml (6.6ms) Rendered people/new.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 15ms (Views: 8.5ms | ActiveRecord: 0.1ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:34:28 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.7ms) Rendered people/new.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-07 23:34:28 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"03", "dob(5i)"=>"34", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:28.994824"], ["dob", "2014-08-08 03:34:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 03:34:28.994824"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 7ms (ActiveRecord: 1.4ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:34:29 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.8ms) Rendered people/new.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 75ms (Views: 74.4ms | ActiveRecord: 0.0ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:29.093683"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:29.093683"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:34:29 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.1ms) Rendered people/edit.html.haml within layouts/application (8.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 10.7ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-07 23:34:29 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"03", "dob(5i)"=>"34", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-08 03:34:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-08 03:34:29.121671"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:34:29 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.8ms) Rendered people/edit.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.6ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:34:29 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (16.2ms) Rendered people/new.html.haml within layouts/application (16.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-07 23:34:29 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"03", "dob(5i)"=>"34", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:29.194948"], ["dob", "2014-08-08 03:34:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 03:34:29.194948"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 7ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (2.3ms) Rendered application/_search_form.html.haml (2.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.9ms) Rendered people/index.html.haml within layouts/application (24.2ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 30ms (Views: 27.4ms | ActiveRecord: 0.6ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:29.245506"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:29.245506"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:34:29 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.5ms) Rendered people/edit.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.1ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:34:29 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.8ms) Rendered people/new.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:29.289782"], ["dob", "2012-08-08 03:34:29.288855"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:29.289782"]]  (1.1ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:34:29 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.2ms) Rendered people/edit.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-07 23:34:29 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"7", "dob(4i)"=>"23", "dob(5i)"=>"34", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-07 23:34:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-08 03:34:29.322366"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:34:32 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (11.5ms) Rendered people/new.html.haml within layouts/application (12.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-07 23:34:32 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:34:32 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-07 23:34:33 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"7", "dob(4i)"=>"23", "dob(5i)"=>"34", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.3ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:33.847692"], ["dob", "2012-08-07 23:34:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:33.847692"]]  (1.1ms) commit transaction Redirected to http://127.0.0.1:50785/people Completed 302 Found in 6ms (ActiveRecord: 1.8ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:33 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.8ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:35.480250"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:35.480250"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 7.9ms | ActiveRecord: 0.7ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-07 23:34:36 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.5ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:50785/people Completed 302 Found in 5ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms)  (0.2ms) SELECT COUNT(*) FROM "people"  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.306934"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.306934"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:34:37 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.5ms) Rendered people/edit.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.1ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (5.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.3ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-07 23:34:37 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.777279"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_6@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.777279"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.780446"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_7@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.780446"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.783169"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_8@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.783169"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.785812"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_9@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.785812"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.788706"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.788706"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (6.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.5ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-07 23:34:37 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.3ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.825933"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.825933"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.829168"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.829168"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.831724"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.831724"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.834409"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.834409"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.837149"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.837149"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.839702"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.839702"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.842331"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.842331"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.845688"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.845688"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.848411"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_20@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.848411"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.850963"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.850963"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.854217"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.854217"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.856947"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.856947"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.859546"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.859546"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.863405"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.863405"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.866310"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.866310"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.869101"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.869101"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.871688"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.871688"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.874346"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.874346"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.877000"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.877000"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.879565"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.879565"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.882331"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.882331"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.885512"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.885512"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.888233"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.888233"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.890901"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.890901"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.894321"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.894321"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.897797"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.897797"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.900926"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.900926"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.903608"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.903608"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.906183"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.906183"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.909301"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.909301"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.912526"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.912526"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.915790"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.915790"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.918953"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.918953"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.921765"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.921765"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.924649"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.924649"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.927837"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.927837"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.930846"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.930846"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.933737"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.933737"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.936789"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.936789"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.939948"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.939948"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.943209"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.943209"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.946312"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.946312"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.949180"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.949180"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.952605"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.952605"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.955640"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.955640"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.959413"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.959413"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.964009"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.964009"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.967138"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.967138"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.977602"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.977602"]]  (6.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:37.986727"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:37.986727"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (12.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.7ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-08-07 23:34:38 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.5ms) Rendered people/index.html.haml within layouts/application (13.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 1.1ms)  (2.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.7ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.235020"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.235020"]]  (1.1ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.238849"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.238849"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.242555"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.242555"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.246512"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.246512"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.250221"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.250221"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.253429"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.253429"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.256508"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.256508"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.259401"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.259401"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.263405"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.263405"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.267167"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.267167"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.269876"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.269876"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.273355"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.273355"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.276380"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.276380"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.279125"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.279125"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.281631"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.281631"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.285120"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.285120"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.287654"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.287654"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.290539"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.290539"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.293144"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.293144"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.296379"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.296379"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.299020"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.299020"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.302484"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.302484"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.305174"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.305174"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.307800"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.307800"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.310865"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.310865"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.313890"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.313890"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.316380"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.316380"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.319388"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.319388"]]  (18.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.339976"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.339976"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.342751"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.342751"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:39.345898"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:39.345898"]]  (1.0ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-07 23:34:39 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.1ms) Rendered people/index.html.haml within layouts/application (12.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.8ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-07 23:34:39 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.0ms | ActiveRecord: 0.8ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-07 23:34:40 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (12.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.7ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-07 23:34:42 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.4ms) Rendered people/index.html.haml within layouts/application (15.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 0.7ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.035829"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.035829"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.038607"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.038607"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.041526"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.041526"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.044916"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.044916"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.048383"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.048383"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.051629"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.051629"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.054549"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.054549"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.057636"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.057636"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.060424"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.060424"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.065006"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.065006"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.068656"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.068656"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.071584"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.071584"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.074640"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.074640"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.077291"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.077291"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.082158"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.082158"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.085876"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.085876"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.089958"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.089958"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.093592"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.093592"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.096539"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.096539"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.107932"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.107932"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.112609"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.112609"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.116474"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.116474"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.122091"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.122091"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.124967"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.124967"]]  (0.8ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.128481"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.128481"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.132472"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.132472"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.135643"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.135643"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.138182"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.138182"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.140920"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.140920"]]  (1.3ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.144716"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.144716"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.148582"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.148582"]]  (1.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (12.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-07 23:34:43 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (19.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 23ms (Views: 20.5ms | ActiveRecord: 0.9ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.975409"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.975409"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.979518"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.979518"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.983351"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.983351"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.986342"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.986342"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.989148"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.989148"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.991801"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.991801"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.994369"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.994369"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.997026"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.997026"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:43.999665"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:43.999665"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.002357"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.002357"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.005153"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.005153"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.007676"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.007676"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.010612"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.010612"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.013512"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.013512"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.016103"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.016103"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.019468"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.019468"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.022068"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.022068"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.024628"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.024628"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.027086"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.027086"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.029606"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.029606"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.032131"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.032131"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.034684"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.034684"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.037247"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.037247"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.039950"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.039950"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.042620"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.042620"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.045436"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.045436"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.047898"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.047898"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.051358"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.051358"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.054270"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.054270"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.057126"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.057126"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.059986"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.059986"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (12.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.9ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-07 23:34:44 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (14.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.8ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.771102"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.771102"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.774001"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.774001"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.776568"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.776568"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.779811"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.779811"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.782710"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.782710"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.785157"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.785157"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.787627"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.787627"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.790128"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.790128"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.793302"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.793302"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.796011"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.796011"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.798936"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.798936"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.801560"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.801560"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.804128"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.804128"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.806680"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.806680"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.809827"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.809827"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.813515"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.813515"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.816900"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.816900"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.819557"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.819557"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.822106"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.822106"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.824830"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.824830"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.827599"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.827599"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.830452"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.830452"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.833033"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.833033"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.835552"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.835552"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.838272"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.838272"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.840885"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.840885"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.843588"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.843588"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.846335"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.846335"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.850032"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.850032"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.852752"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.852752"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:44.855572"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:44.855572"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-07 23:34:45 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (9.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.6ms)  (2.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.7ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.357378"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.357378"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.360109"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.360109"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.362476"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.362476"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.365253"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.365253"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.367849"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.367849"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.370393"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.370393"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.372761"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.372761"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.375065"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.375065"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.378364"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.378364"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.381135"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.381135"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.383843"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.383843"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.387417"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.387417"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.390085"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.390085"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.393298"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.393298"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.396349"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.396349"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.399189"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.399189"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.401800"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.401800"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.404196"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.404196"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.407524"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.407524"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.410388"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.410388"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.413137"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.413137"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.415740"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.415740"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.419173"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.419173"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.421707"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.421707"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.424233"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.424233"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.426603"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.426603"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.429120"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.429120"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.431547"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.431547"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.433900"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.433900"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.436746"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.436746"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.445604"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.445604"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (12.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.6ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:45.481821"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:45.481821"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.5ms)  (2.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.5ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:47 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.829777"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.829777"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.832636"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.832636"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.835162"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.835162"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.837917"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.837917"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.840618"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.840618"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.844147"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.844147"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.847472"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.847472"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.850213"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.850213"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.852770"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.852770"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.855319"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.855319"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.858058"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.858058"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.860953"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.860953"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.863724"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.863724"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.866619"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.866619"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.869562"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.869562"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.872001"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.872001"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.874442"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.874442"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.876956"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.876956"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.879451"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.879451"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.882167"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.882167"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.884794"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.884794"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.888262"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.888262"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.891417"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.891417"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.894358"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.894358"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.897142"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.897142"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.899818"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.899818"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.902339"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.902339"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.905214"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.905214"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.909302"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.909302"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (1.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.912709"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.912709"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:34:47.917534"], ["dob", "1984-08-08 03:34:25.690792"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:34:47.917534"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:34:47 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (13.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.8ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-07 23:34:47 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (14.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 1.2ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-07 23:34:47 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (15.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.6ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-08-08 03:34:52.651655"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.651655"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-08-08 03:34:52.655558"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.655558"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-08-08 03:34:52.658799"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.658799"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-08-08 03:34:52.662376"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.662376"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-08-08 03:34:52.666540"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.666540"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-08-08 03:34:52.669946"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.669946"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-08-08 03:34:52.673489"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.673489"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-08-08 03:34:52.676838"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.676838"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-08-08 03:34:52.680117"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.680117"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-08-08 03:34:52.683619"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.683619"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-08-08 03:34:52.687458"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.687458"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-08-08 03:34:52.691014"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.691014"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-08-08 03:34:52.694040"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.694040"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-08-08 03:34:52.696999"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.696999"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-08-08 03:34:52.699854"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.699854"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-08-08 03:34:52.703513"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.703513"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-08-08 03:34:52.706190"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.706190"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-08-08 03:34:52.708819"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.708819"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-08-08 03:34:52.711955"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.711955"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-08-08 03:34:52.714698"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.714698"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-08-08 03:34:52.717710"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.717710"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-08-08 03:34:52.720425"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.720425"]]  (1.3ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-08-08 03:34:52.723582"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.723582"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-08-08 03:34:52.726470"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.726470"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-08-08 03:34:52.729457"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.729457"]]  (1.1ms) commit transaction  (0.2ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-08-08 03:34:52.733203"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.733203"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-08-08 03:34:52.736797"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.736797"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-08-08 03:34:52.740032"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.740032"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-08-08 03:34:52.743950"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.743950"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-08-08 03:34:52.746848"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.746848"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (1.0ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-08-08 03:34:52.749561"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.749561"]]  (1.3ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-07 23:34:52 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (5.2ms) Rendered credit_card_infos/index.html.haml within layouts/application (14.1ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 36ms (Views: 34.1ms | ActiveRecord: 0.7ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-08-07 23:34:52 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.4ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.2ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (4.4ms) Rendered credit_card_infos/index.html.haml within layouts/application (8.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 9.8ms | ActiveRecord: 0.8ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-08-07 23:34:52 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.5ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.7ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-08-08 03:34:52.856551"], ["exp_date", "2016-08-07"], ["secret_code", "d2bab94a21e8f964"], ["updated_at", "2014-08-08 03:34:52.856551"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-07 23:34:52 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (2.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.3ms) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:37:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.7ms) Rendered application/_search_form.html.haml (2.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (9.4ms) Rendered people/index.html.haml within layouts/application (28.6ms) Rendered application/_flash_messages.html.haml (10.8ms) Completed 200 OK in 78ms (Views: 73.5ms | ActiveRecord: 0.6ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:37:39.530077"], ["dob", "1984-08-08 03:37:36.570089"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:37:39.530077"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:37:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.9ms) Rendered application/_search_form.html.haml (2.2ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (10.0ms) Rendered people/index.html.haml within layouts/application (34.5ms) Rendered application/_flash_messages.html.haml (9.3ms) Completed 200 OK in 69ms (Views: 66.5ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-07 23:37:42 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:37:42 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:38:42.988953"], ["dob", "1984-08-08 03:38:40.060627"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:38:42.988953"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:38:45 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (2.0ms) Rendered application/_search_form.html.haml (1.8ms) Person Load (0.9ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (14.0ms) Rendered people/index.html.haml within layouts/application (39.2ms) Rendered application/_flash_messages.html.haml (9.6ms) Completed 200 OK in 76ms (Views: 72.9ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-07 23:38:45 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:38:45 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-08-08 03:39:15.026634"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.026634"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-07 23:39:15 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (10.4ms) Rendered credit_card_infos/index.html.haml within layouts/application (20.4ms) Rendered application/_flash_messages.html.haml (9.8ms) Completed 200 OK in 59ms (Views: 57.6ms | ActiveRecord: 0.4ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-08-08 03:39:15.116867"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.116867"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-08-08 03:39:15.119537"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.119537"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-08-08 03:39:15.122333"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.122333"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-08-08 03:39:15.125183"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.125183"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-08-08 03:39:15.128196"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.128196"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-08-08 03:39:15.130777"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.130777"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-08-08 03:39:15.133357"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.133357"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-08-08 03:39:15.135897"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.135897"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-08-08 03:39:15.138380"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.138380"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-08-08 03:39:15.141096"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.141096"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-08-08 03:39:15.144672"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.144672"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-08-08 03:39:15.147735"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.147735"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-08-08 03:39:15.150251"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.150251"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-08-08 03:39:15.152790"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.152790"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-08-08 03:39:15.155470"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.155470"]]  (4.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-08-08 03:39:15.162637"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.162637"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-08-08 03:39:15.166309"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.166309"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-08-08 03:39:15.169748"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.169748"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-08-08 03:39:15.173261"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.173261"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-08-08 03:39:15.176222"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.176222"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-08-08 03:39:15.179242"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.179242"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-08-08 03:39:15.182050"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.182050"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-08-08 03:39:15.185234"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.185234"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-08-08 03:39:15.188050"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.188050"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-08-08 03:39:15.191657"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.191657"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-08-08 03:39:15.194814"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.194814"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-08-08 03:39:15.197941"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.197941"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-08-08 03:39:15.201316"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.201316"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-08-08 03:39:15.204048"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.204048"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-08-08 03:39:15.206908"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.206908"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-08-08 03:39:15.209736"], ["exp_date", "2016-08-07"], ["secret_code", "5e9a71ef5eafb2ea"], ["updated_at", "2014-08-08 03:39:15.209736"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-07 23:39:15 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered credit_card_infos/index.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-08-07 23:39:15 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.0ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-08-07 23:39:15 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.7ms) Rendered application/_search_form.html.haml (2.1ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (16.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 40ms (Views: 36.2ms | ActiveRecord: 0.7ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.111831"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.111831"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.114970"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.114970"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.117505"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.117505"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.120105"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.120105"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.122676"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.122676"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.125400"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.125400"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.128514"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.128514"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.131351"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.131351"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.135260"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.135260"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.143399"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.143399"]]  (1.4ms) commit transaction  (0.3ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.151667"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.151667"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.155110"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.155110"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.159268"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.159268"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.162899"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.162899"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.165860"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.165860"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.168890"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.168890"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.171643"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.171643"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.174953"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.174953"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.178270"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.178270"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.180850"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.180850"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.183465"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.183465"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.187126"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.187126"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.189866"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.189866"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.192486"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.192486"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.195204"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.195204"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.197893"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.197893"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.200413"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.200413"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.202893"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.202893"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.205287"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.205287"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.208682"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.208682"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.211301"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.211301"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (12.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-07 23:39:20 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (10.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-07 23:39:20 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (14.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.6ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (2.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:20.312256"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:20.312256"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:22 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 13ms (Views: 10.2ms | ActiveRecord: 0.8ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-07 23:39:23 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:23 -0400  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.400528"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.400528"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.403909"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.403909"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.406720"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.406720"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.409629"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.409629"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.412480"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.412480"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.415380"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.415380"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.418146"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.418146"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.420800"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.420800"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.424038"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.424038"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.427539"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.427539"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.430703"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.430703"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.433547"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.433547"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.436303"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.436303"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.438985"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.438985"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.442222"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.442222"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.445689"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.445689"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.448587"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.448587"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.451805"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.451805"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.454694"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.454694"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.457488"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.457488"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.461178"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.461178"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.464169"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.464169"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.467104"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.467104"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.469874"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.469874"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.472634"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.472634"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.475445"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.475445"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.478297"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.478297"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.481458"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.481458"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.484870"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.484870"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.487728"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.487728"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.491352"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.491352"]]  (1.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:23 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (15.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.8ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.528058"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.528058"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.531371"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.531371"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.534164"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.534164"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.536736"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.536736"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.539424"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.539424"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.542235"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.542235"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.545093"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.545093"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.547966"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.547966"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.550799"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.550799"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.553558"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.553558"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.556167"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.556167"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.558982"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.558982"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.561849"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.561849"]]  (1.0ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.565683"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.565683"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.569140"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.569140"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.571746"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.571746"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.574642"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.574642"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.577346"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.577346"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.580768"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.580768"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.583492"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.583492"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.586097"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.586097"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.589037"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.589037"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.592026"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.592026"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.595362"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.595362"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.598546"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.598546"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.601871"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.601871"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.604764"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.604764"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.607966"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.607966"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.610572"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.610572"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.613681"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.613681"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:23.616635"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:23.616635"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:23 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (13.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:23 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-07 23:39:23 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (12.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:23 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.149965"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.149965"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.152708"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.152708"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.155360"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.155360"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.157976"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.157976"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.160487"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.160487"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.163044"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.163044"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.165666"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.165666"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.168260"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.168260"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.170951"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.170951"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.173836"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.173836"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.176525"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.176525"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.179754"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.179754"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.182482"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.182482"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.185030"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.185030"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.187701"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.187701"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.190993"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.190993"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.194385"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.194385"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.197147"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.197147"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.200645"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.200645"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.203243"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.203243"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.206429"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.206429"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.210316"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.210316"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.212896"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.212896"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.215230"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.215230"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.217909"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.217909"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.220397"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.220397"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.223130"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.223130"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.225814"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.225814"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.229128"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.229128"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.231806"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.231806"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:24.234647"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:24.234647"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:24 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (12.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:24 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-07 23:39:24 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (20.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 1.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:24 -0400  (2.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.7ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.086608"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.086608"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.089361"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.089361"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.092733"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.092733"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.095323"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.095323"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.098519"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.098519"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.101002"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.101002"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.103520"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.103520"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.105926"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.105926"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.108350"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.108350"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.111605"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.111605"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.114592"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.114592"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.117180"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.117180"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.119783"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.119783"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.122503"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.122503"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.126294"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.126294"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.129340"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.129340"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.131947"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.131947"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.134752"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.134752"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.137302"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.137302"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.139748"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.139748"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.142374"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.142374"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.145750"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.145750"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.149590"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.149590"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.152399"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.152399"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.155074"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.155074"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.157720"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.157720"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.160407"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.160407"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.162867"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.162867"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.165443"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.165443"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.168775"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.168775"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.172864"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.172864"]]  (1.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:25 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (14.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:25 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-07 23:39:25 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (14.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:25 -0400  (3.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.895515"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.895515"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.898102"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.898102"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.900826"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.900826"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.903750"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.903750"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.907573"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.907573"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.910994"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.910994"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.914098"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.914098"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.916661"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.916661"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.920102"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.920102"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.923462"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.923462"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.926601"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.926601"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.929158"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.929158"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.931745"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.931745"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.934726"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.934726"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.937459"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.937459"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.940595"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.940595"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.943041"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.943041"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.945463"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.945463"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.947830"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.947830"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.950759"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.950759"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.953663"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.953663"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.957533"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.957533"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.960741"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.960741"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.963370"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.963370"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.965788"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.965788"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.968304"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.968304"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.970944"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.970944"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.973516"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.973516"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.976163"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.976163"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.978624"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.978624"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:25.981417"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:25.981417"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-07 23:39:25 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (9.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:26 -0400 Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-07 23:39:26 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (11.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:26 -0400 Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-07 23:39:26 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:27 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-07 23:39:27 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:27 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (2.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:28 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (3.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:28 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:28 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-07 23:39:28 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.1ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:28 -0400  (2.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:28 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (2.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.927695"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.927695"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.930917"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.930917"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.933934"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.933934"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.936765"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_20@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.936765"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.939613"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.939613"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.942456"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.942456"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.945743"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.945743"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.949075"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.949075"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.952191"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.952191"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.956511"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.956511"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.959850"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.959850"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.962744"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.962744"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.965615"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.965615"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.968535"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.968535"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.971598"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.971598"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.974939"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.974939"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.977806"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.977806"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.980733"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.980733"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.983560"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.983560"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.986250"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.986250"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.989064"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.989064"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.991734"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.991734"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.994844"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.994844"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:28.997840"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:28.997840"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.000554"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.000554"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.003721"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.003721"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.006597"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.006597"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.009483"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.009483"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.013082"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.013082"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.016086"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.016086"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.019292"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.019292"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.022863"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.022863"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.026061"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.026061"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.028970"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.028970"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.032058"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.032058"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.036191"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.036191"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.039297"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.039297"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.042361"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.042361"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.045813"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.045813"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.049369"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.049369"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.052504"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.052504"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.055584"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.055584"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.058895"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.058895"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.062227"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.062227"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.065324"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.065324"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.068129"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.068129"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.071883"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.071883"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.075133"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.075133"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.078505"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.078505"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:29.081690"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:29.081690"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (13.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:29 -0400  (3.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.6ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:31.276964"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_188@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:31.276964"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:31.279984"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_189@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:31.279984"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:31.283144"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_190@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:31.283144"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:31.287045"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_191@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:31.287045"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:31.290673"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:31.290673"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:31 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.5ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-07 23:39:31 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (5.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:31.328760"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:31.328760"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:31 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:39:31 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (23.7ms) Rendered people/edit.html.haml within layouts/application (25.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 28ms (Views: 27.6ms | ActiveRecord: 0.1ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:31.378419"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:31.378419"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:31 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:31 -0400  (0.1ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-07 23:39:32 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (2.8ms) commit transaction Redirected to http://127.0.0.1:51856/people Completed 302 Found in 7ms (ActiveRecord: 3.5ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:32 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:32 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:39:33 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.8ms) Rendered people/new.html.haml within layouts/application (9.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-07 23:39:33 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"03", "dob(5i)"=>"39", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (2.4ms) Rendered people/_form.html.haml (7.7ms) Rendered people/new.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 16ms (Views: 9.2ms | ActiveRecord: 0.1ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:39:33 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.4ms) Rendered people/new.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:33.340846"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:33.340846"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:39:33 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.8ms) Rendered people/edit.html.haml within layouts/application (8.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:39:33 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.5ms) Rendered people/new.html.haml within layouts/application (8.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:33 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-07 23:39:34 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"7", "dob(4i)"=>"23", "dob(5i)"=>"39", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:34.279179"], ["dob", "2012-08-07 23:39:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:34.279179"]]  (1.0ms) commit transaction Redirected to http://127.0.0.1:51856/people Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:34 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (5.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:39:34 -0400  (2.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.6ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:35.228750"], ["dob", "2012-08-08 03:39:35.227744"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:35.228750"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:39:35 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.8ms) Rendered people/edit.html.haml within layouts/application (8.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-07 23:39:35 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"7", "dob(4i)"=>"23", "dob(5i)"=>"39", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-07 23:39:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-08 03:39:35.265408"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.4ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:39:35 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.9ms) Rendered people/new.html.haml within layouts/application (7.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-07 23:39:35 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"03", "dob(5i)"=>"39", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:35.318276"], ["dob", "2014-08-08 03:39:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 03:39:35.318276"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 23:39:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:35.343424"], ["dob", "1984-08-08 03:39:12.141738"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:39:35.343424"]]  (1.5ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:39:35 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.0ms) Rendered people/edit.html.haml within layouts/application (7.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-07 23:39:35 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"03", "dob(5i)"=>"39", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.2ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-08 03:39:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-08 03:39:35.376255"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.5ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:39:35 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.3ms) Rendered people/edit.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:39:35 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.7ms) Rendered people/new.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-07 23:39:35 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"03", "dob(5i)"=>"39", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:39:35.426050"], ["dob", "2014-08-08 03:39:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 03:39:35.426050"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:39:35 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.9ms) Rendered people/new.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-08-08 03:42:08.179347"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.179347"]]  (1.0ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-07 23:42:08 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (19.0ms) Rendered application/_flash_messages.html.haml (10.2ms) Completed 200 OK in 60ms (Views: 58.4ms | ActiveRecord: 0.4ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-08-08 03:42:08.271659"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.271659"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-08-08 03:42:08.274471"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.274471"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-08-08 03:42:08.277130"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.277130"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-08-08 03:42:08.279896"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.279896"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-08-08 03:42:08.282400"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.282400"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-08-08 03:42:08.284963"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.284963"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-08-08 03:42:08.287998"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.287998"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-08-08 03:42:08.290750"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.290750"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-08-08 03:42:08.293237"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.293237"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-08-08 03:42:08.295787"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.295787"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-08-08 03:42:08.298378"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.298378"]]  (1.7ms) commit transaction  (2.8ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-08-08 03:42:08.305353"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.305353"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-08-08 03:42:08.309438"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.309438"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-08-08 03:42:08.312460"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.312460"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-08-08 03:42:08.315987"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.315987"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-08-08 03:42:08.319040"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.319040"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-08-08 03:42:08.321903"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.321903"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-08-08 03:42:08.324518"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.324518"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-08-08 03:42:08.327081"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.327081"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-08-08 03:42:08.329625"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.329625"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-08-08 03:42:08.332222"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.332222"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-08-08 03:42:08.335017"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.335017"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-08-08 03:42:08.337460"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.337460"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-08-08 03:42:08.340415"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.340415"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-08-08 03:42:08.343007"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.343007"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-08-08 03:42:08.345684"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.345684"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-08-08 03:42:08.348180"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.348180"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-08-08 03:42:08.350792"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.350792"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-08-08 03:42:08.353592"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.353592"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-08-08 03:42:08.356228"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.356228"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-08-08 03:42:08.358972"], ["exp_date", "2016-08-07"], ["secret_code", "1e4ecca28aba544e"], ["updated_at", "2014-08-08 03:42:08.358972"]]  (1.3ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-07 23:42:08 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-08-07 23:42:08 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (71.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 73ms (Views: 72.3ms | ActiveRecord: 0.6ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-08-07 23:42:08 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.4ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:42:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.8ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (16.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 38ms (Views: 33.8ms | ActiveRecord: 0.5ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:42:13.256706"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:42:13.256706"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:42:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:42:13 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (20.7ms) Rendered people/edit.html.haml within layouts/application (22.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:42:13.305830"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:42:13.305830"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:42:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (9.0ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 14ms (Views: 11.5ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-07 23:42:16 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:42:16 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-07 23:42:17 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.5ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.3ms) commit transaction Redirected to http://127.0.0.1:52612/people Completed 302 Found in 6ms (ActiveRecord: 2.2ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 23:42:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:42:17 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:42:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 23:42:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.3ms)  (2.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:43:31 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (2.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:43:31 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-07 23:43:31 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:43:31 -0400  (2.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:43:32 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.111936"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.111936"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.115161"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.115161"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.119103"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.119103"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.122567"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.122567"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.125404"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.125404"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.128584"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.128584"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.131539"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.131539"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.134428"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.134428"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.137429"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.137429"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.140729"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.140729"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.143727"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.143727"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.146753"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.146753"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.149332"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.149332"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.152234"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.152234"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.155772"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.155772"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.158716"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.158716"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.161436"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.161436"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.164300"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.164300"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.167036"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.167036"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.169895"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.169895"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.172765"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.172765"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.175399"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.175399"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.178243"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.178243"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.181016"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.181016"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.184049"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.184049"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.187091"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.187091"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.190384"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.190384"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.193121"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.193121"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.196653"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.196653"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.200093"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.200093"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.203673"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.203673"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.207218"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.207218"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.210250"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.210250"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.213190"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.213190"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.216065"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.216065"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.218988"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.218988"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.222138"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.222138"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.225020"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.225020"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.227974"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.227974"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.231113"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.231113"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.234088"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.234088"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.237490"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.237490"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.240302"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.240302"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.243221"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.243221"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.246898"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.246898"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.250824"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.250824"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.254007"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.254007"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.256929"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.256929"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.260184"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.260184"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:32.263338"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:32.263338"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:43:32 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (16.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:43:32 -0400  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.8ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.544495"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_3@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.544495"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.547371"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_4@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.547371"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.549998"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_5@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.549998"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.552577"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_6@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.552577"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.555251"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.555251"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:43:34 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.5ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-07 23:43:34 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.593992"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_7@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.593992"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:43:34 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (5.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:43:34 -0400  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:43:34 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.918157"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.918157"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.920670"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.920670"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.923490"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.923490"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.926267"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.926267"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.928830"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.928830"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.931582"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.931582"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.934112"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.934112"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.937927"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.937927"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.941106"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.941106"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.943926"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.943926"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.946835"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.946835"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.949364"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.949364"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.951805"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.951805"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.954285"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.954285"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.957221"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.957221"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.960647"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.960647"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.963190"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.963190"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.965824"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.965824"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.968332"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.968332"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.970810"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.970810"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.973511"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.973511"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.976146"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.976146"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.979156"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.979156"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.982049"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.982049"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.985386"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.985386"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.988438"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.988438"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.991416"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.991416"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.994426"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.994426"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.997094"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.997094"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:34.999686"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:34.999686"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.003260"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.003260"]]  (1.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:43:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (12.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-07 23:43:35 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (12.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-07 23:43:35 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (17.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.6ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.100909"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.100909"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.103608"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.103608"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.106105"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.106105"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.108875"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.108875"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.111640"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.111640"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.114089"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.114089"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.116669"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.116669"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.119213"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.119213"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.122466"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.122466"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.125047"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.125047"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.127572"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.127572"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.130265"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.130265"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.132741"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.132741"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.135197"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.135197"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.138278"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.138278"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.141026"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.141026"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.144223"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.144223"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.146715"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.146715"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.149135"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.149135"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.151805"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.151805"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.154518"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.154518"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.157185"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.157185"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.159888"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.159888"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.162453"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.162453"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.164841"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.164841"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.167248"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.167248"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.169679"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.169679"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.171993"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.171993"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.174589"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.174589"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.177099"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.177099"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.180032"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.180032"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:43:35 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (9.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:43:35 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-07 23:43:35 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (20.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:43:35 -0400  (2.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.5ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.988055"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.988055"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.990802"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.990802"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.993520"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.993520"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.996122"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.996122"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:35.998676"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:35.998676"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.001161"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.001161"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.003786"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.003786"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.006223"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.006223"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.009072"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.009072"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.011877"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.011877"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.014590"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.014590"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.017419"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.017419"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.021387"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.021387"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.025199"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.025199"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.027854"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.027854"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.030449"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.030449"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.033415"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.033415"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.036564"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.036564"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.040064"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.040064"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.044254"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.044254"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.047950"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.047950"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.050629"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.050629"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.054041"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.054041"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.056652"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.056652"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.059152"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.059152"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.061686"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.061686"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.064272"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.064272"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.066996"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.066996"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.069860"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.069860"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.072672"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.072672"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.076264"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.076264"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:43:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:43:36 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-07 23:43:36 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (11.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:43:36 -0400  (5.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.551925"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.551925"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.554698"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.554698"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.557275"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.557275"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.560189"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.560189"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.563287"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.563287"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.565798"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.565798"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.568371"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.568371"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.570986"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.570986"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.573629"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.573629"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.577051"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.577051"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.579956"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.579956"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.582643"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.582643"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.585781"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.585781"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.589307"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.589307"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.592194"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.592194"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.595123"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.595123"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.597877"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.597877"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.600481"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.600481"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.603275"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.603275"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.606022"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.606022"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.609142"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.609142"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.611858"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.611858"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.614706"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.614706"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.617314"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.617314"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.620254"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.620254"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.623214"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.623214"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.625823"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.625823"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.628474"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.628474"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.631124"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.631124"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.633740"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.633740"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.636552"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.636552"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:43:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (11.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.7ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.667734"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.667734"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.670917"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.670917"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.674104"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.674104"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.676952"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.676952"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.679771"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.679771"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.683419"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.683419"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.687297"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.687297"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.690924"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.690924"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.693657"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.693657"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.697261"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.697261"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.700279"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.700279"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.703689"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.703689"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.707153"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.707153"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.709965"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.709965"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.712481"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.712481"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.715950"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.715950"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.719355"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.719355"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.722142"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.722142"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.724856"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.724856"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.727738"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.727738"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.730675"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.730675"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.733713"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.733713"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.736678"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.736678"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.739590"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.739590"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.745991"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.745991"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.750080"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.750080"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.753830"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.753830"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.756929"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.756929"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.760171"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.760171"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.763861"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.763861"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:36.767993"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:36.767993"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:43:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (12.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:43:36 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-07 23:43:37 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (19.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 23ms (Views: 20.5ms | ActiveRecord: 1.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:43:37 -0400  (5.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.568569"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.568569"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.571506"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.571506"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.573941"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.573941"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.576446"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.576446"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.578941"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.578941"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.581676"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.581676"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.584285"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.584285"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.591118"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.591118"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.594439"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.594439"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.597021"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.597021"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.603551"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.603551"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.606817"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.606817"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.609486"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.609486"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.611977"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.611977"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.614589"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.614589"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.617075"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.617075"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.619791"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.619791"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.622683"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.622683"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.625405"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.625405"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.628348"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.628348"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.630766"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.630766"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.633399"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.633399"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.635967"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.635967"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.638563"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.638563"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.641417"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.641417"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.644362"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.644362"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.647048"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.647048"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.650301"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.650301"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.653060"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.653060"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.656367"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.656367"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:37.659368"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:37.659368"]]  (2.2ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-07 23:43:37 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.5ms) Rendered people/index.html.haml within layouts/application (12.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:43:37 -0400 Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-07 23:43:38 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.4ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.7ms) Rendered people/index.html.haml within layouts/application (12.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:43:38 -0400 Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-07 23:43:38 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (10.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:43:38 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-07 23:43:39 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.5ms) Rendered people/index.html.haml within layouts/application (11.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:43:39 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (5.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:43:40 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.8ms) Rendered people/new.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-07 23:43:40 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"03", "dob(5i)"=>"43", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (2.4ms) Rendered people/_form.html.haml (8.1ms) Rendered people/new.html.haml within layouts/application (8.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 10.2ms | ActiveRecord: 0.1ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:43:40 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.7ms) Rendered people/new.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:40.350350"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:40.350350"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:43:40 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.8ms) Rendered people/edit.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:43:40 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (17.0ms) Rendered people/new.html.haml within layouts/application (17.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 18.9ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:43:40 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-07 23:43:41 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"7", "dob(4i)"=>"23", "dob(5i)"=>"43", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:41.229415"], ["dob", "2012-08-07 23:43:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:41.229415"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:52612/people Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 23:43:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:43:41 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (2.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:42.347350"], ["dob", "2012-08-08 03:43:42.346412"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:42.347350"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:43:42 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.1ms) Rendered people/edit.html.haml within layouts/application (7.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-07 23:43:42 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"7", "dob(4i)"=>"23", "dob(5i)"=>"43", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-07 23:43:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-08 03:43:42.381538"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 23:43:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.5ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:43:42 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (9.4ms) Rendered people/new.html.haml within layouts/application (9.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-07 23:43:42 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"03", "dob(5i)"=>"43", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:42.446312"], ["dob", "2014-08-08 03:43:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 03:43:42.446312"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.2ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:43:42 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.8ms) Rendered people/new.html.haml within layouts/application (9.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:42.478483"], ["dob", "1984-08-08 03:42:05.240074"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:43:42.478483"]]  (1.1ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:43:42 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.0ms) Rendered people/edit.html.haml within layouts/application (8.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-07 23:43:42 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"03", "dob(5i)"=>"42", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-08 03:42:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-08 03:43:42.504159"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 4ms (ActiveRecord: 1.5ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:43:42 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.2ms) Rendered people/edit.html.haml within layouts/application (8.6ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:43:42 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.6ms) Rendered people/new.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-07 23:43:42 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"03", "dob(5i)"=>"43", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:43:42.555733"], ["dob", "2014-08-08 03:43:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 03:43:42.555733"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 23:43:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.4ms) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-08-08 03:43:53.891907"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:53.891907"]]  (1.0ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-07 23:43:53 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (11.1ms) Rendered credit_card_infos/index.html.haml within layouts/application (21.6ms) Rendered application/_flash_messages.html.haml (9.5ms) Completed 200 OK in 70ms (Views: 69.4ms | ActiveRecord: 0.4ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-08-08 03:43:53.995187"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:53.995187"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-08-08 03:43:53.997917"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:53.997917"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-08-08 03:43:54.001066"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.001066"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-08-08 03:43:54.004409"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.004409"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-08-08 03:43:54.007153"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.007153"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-08-08 03:43:54.009645"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.009645"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-08-08 03:43:54.012276"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.012276"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-08-08 03:43:54.014769"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.014769"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-08-08 03:43:54.017241"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.017241"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-08-08 03:43:54.019893"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.019893"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-08-08 03:43:54.023309"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.023309"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-08-08 03:43:54.026031"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.026031"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-08-08 03:43:54.028648"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.028648"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-08-08 03:43:54.031174"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.031174"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-08-08 03:43:54.033854"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.033854"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-08-08 03:43:54.037849"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.037849"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-08-08 03:43:54.041055"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.041055"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-08-08 03:43:54.044835"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.044835"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-08-08 03:43:54.047565"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.047565"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-08-08 03:43:54.050863"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.050863"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-08-08 03:43:54.053343"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.053343"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-08-08 03:43:54.055983"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.055983"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-08-08 03:43:54.058600"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.058600"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-08-08 03:43:54.061202"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.061202"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-08-08 03:43:54.064605"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.064605"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-08-08 03:43:54.067491"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.067491"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-08-08 03:43:54.070164"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.070164"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-08-08 03:43:54.072677"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.072677"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-08-08 03:43:54.075223"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.075223"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-08-08 03:43:54.077656"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.077656"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-08-08 03:43:54.082142"], ["exp_date", "2016-08-07"], ["secret_code", "5d1ef08737435926"], ["updated_at", "2014-08-08 03:43:54.082142"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-07 23:43:54 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered credit_card_infos/index.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-08-07 23:43:54 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.4ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.2ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (4.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (8.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.7ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-08-07 23:43:54 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.9ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered credit_card_infos/index.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 1.1ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:43:58 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.7ms) Rendered application/_search_form.html.haml (1.8ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (15.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 37ms (Views: 32.2ms | ActiveRecord: 0.6ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:44:01 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.5ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-07 23:44:01 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:44:01 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-07 23:44:02 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:44:02 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:44:02 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:44:02 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (3.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:44:02 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.227524"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.227524"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.231814"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.231814"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.235318"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.235318"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.238324"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.238324"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.241102"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.241102"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.243758"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.243758"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.246392"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.246392"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.249165"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.249165"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.252222"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.252222"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.255202"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.255202"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.258654"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.258654"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.261816"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.261816"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.264602"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.264602"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.267586"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.267586"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.270466"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.270466"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.273146"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.273146"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.275903"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.275903"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.278996"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.278996"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.282521"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.282521"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.286181"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.286181"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.289549"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.289549"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.292999"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.292999"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.296769"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.296769"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.300920"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.300920"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.305001"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.305001"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.308794"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.308794"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.312247"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.312247"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.315810"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.315810"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.318796"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.318796"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.322673"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.322673"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.326160"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.326160"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.329259"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.329259"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.333343"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.333343"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.336913"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.336913"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.340119"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.340119"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.343720"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.343720"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.347766"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.347766"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.350751"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.350751"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.353731"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.353731"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.357509"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.357509"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.360366"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.360366"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.363242"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.363242"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.366165"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.366165"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.369890"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.369890"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.373030"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.373030"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.376095"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.376095"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.379550"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.379550"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.382925"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.382925"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.386236"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.386236"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:17.390160"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:17.390160"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:46:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (5.2ms) Rendered people/index.html.haml within layouts/application (14.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:46:17 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.631735"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_1@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.631735"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.635155"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_2@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.635155"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.638280"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_3@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.638280"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.641325"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_4@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.641325"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.644439"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.644439"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:46:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-07 23:46:19 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.4ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-07 23:46:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.703924"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_5@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.703924"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.706642"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_6@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.706642"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.709358"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_7@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.709358"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.712297"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.712297"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.715816"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.715816"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.719602"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.719602"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.722745"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.722745"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.725197"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.725197"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.727734"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.727734"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.730438"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.730438"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.733559"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.733559"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.736476"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.736476"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.739349"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.739349"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.742788"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.742788"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.745598"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.745598"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.749104"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.749104"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.751673"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.751673"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.754360"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.754360"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.756898"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.756898"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.759997"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.759997"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.762666"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.762666"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.765915"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.765915"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.769015"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.769015"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.771775"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.771775"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.774455"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.774455"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.777841"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.777841"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.780803"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.780803"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.783727"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.783727"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.786341"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.786341"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.789822"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.789822"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.792531"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.792531"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:46:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (13.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.8ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-07 23:46:19 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (12.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-07 23:46:19 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (17.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.6ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:19.896907"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:19.896907"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:46:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:46:19 -0400  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.182898"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.182898"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.185794"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.185794"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.188692"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.188692"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.191240"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.191240"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.193585"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.193585"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.197200"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.197200"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.200665"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.200665"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.203328"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.203328"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.205839"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.205839"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.208846"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.208846"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.211980"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.211980"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.214414"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.214414"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.217764"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.217764"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.220848"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.220848"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.223669"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.223669"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.226753"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.226753"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.229473"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.229473"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.232718"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.232718"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.235625"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.235625"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.238240"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.238240"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.240901"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.240901"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.243549"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.243549"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.246086"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.246086"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.248969"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.248969"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.251560"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.251560"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.253940"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.253940"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.256459"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.256459"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.259012"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.259012"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.261670"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.261670"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.264247"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.264247"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.267138"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.267138"]]  (1.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:46:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.6ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.298129"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.298129"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.300906"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.300906"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.303479"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.303479"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.305871"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.305871"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.308447"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.308447"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.351552"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.351552"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.354400"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.354400"]]  (4.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.360912"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.360912"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.363673"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.363673"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.366254"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.366254"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.369471"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.369471"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.372317"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.372317"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.376168"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.376168"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.379403"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.379403"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.382062"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.382062"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.385065"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.385065"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.387997"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.387997"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.390647"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.390647"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.393836"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.393836"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.397087"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.397087"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.399973"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.399973"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.402474"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.402474"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.405076"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.405076"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.407591"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.407591"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.411403"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.411403"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.414680"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.414680"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.417948"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.417948"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.420798"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.420798"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.424595"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.424595"]]  (1.7ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.428279"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.428279"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:20.431828"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:20.431828"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:46:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (12.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:46:20 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-07 23:46:20 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (17.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 21ms (Views: 17.9ms | ActiveRecord: 1.1ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:46:20 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.238370"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.238370"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.241104"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.241104"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.243647"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.243647"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.246309"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.246309"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.248721"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.248721"]]  (0.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.251071"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.251071"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.253553"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.253553"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.256077"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.256077"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.259261"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.259261"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.261740"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.261740"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.264592"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.264592"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.267484"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.267484"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.271415"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.271415"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.274447"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.274447"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.276997"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.276997"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.279459"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.279459"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.282062"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.282062"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.284861"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.284861"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.288079"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.288079"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.290594"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.290594"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.293413"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.293413"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.296150"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.296150"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.298746"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.298746"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.301283"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.301283"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.303916"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.303916"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.306644"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.306644"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.309178"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.309178"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.311767"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.311767"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.314409"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.314409"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.317529"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.317529"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.320592"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.320592"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:46:21 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (15.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:46:21 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-07 23:46:21 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (10.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:46:21 -0400  (3.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.890098"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.890098"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.893088"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.893088"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.895867"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.895867"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.898575"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.898575"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.901975"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.901975"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.905489"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.905489"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.908539"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.908539"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.911508"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.911508"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.914491"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.914491"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.917241"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.917241"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.920856"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.920856"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.925150"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.925150"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.927709"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.927709"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.930490"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.930490"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.933173"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.933173"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.936053"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.936053"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.938865"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.938865"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.941504"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.941504"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.944307"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.944307"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.946980"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.946980"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.949678"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.949678"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.952589"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.952589"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.955307"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.955307"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.958667"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.958667"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.961596"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.961596"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.964408"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.964408"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.967052"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.967052"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.970036"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.970036"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.972998"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.972998"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.975717"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.975717"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:21.978692"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:21.978692"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:46:21 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (15.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:46:22 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-07 23:46:22 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (12.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:46:22 -0400  (3.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.703577"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.703577"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.706284"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.706284"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.709061"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.709061"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.711884"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.711884"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.714449"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.714449"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.717079"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.717079"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.719974"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.719974"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.723273"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.723273"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.725790"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.725790"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.728875"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.728875"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.731745"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.731745"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.735138"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.735138"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.738429"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.738429"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.742016"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.742016"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.745881"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.745881"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.748401"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.748401"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.750921"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.750921"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.753361"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.753361"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.756232"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.756232"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.759504"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.759504"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.762209"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.762209"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.764835"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.764835"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.767480"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.767480"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.770195"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.770195"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.772841"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.772841"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.775503"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.775503"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.778113"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.778113"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.781184"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.781184"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.784651"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.784651"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.787312"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.787312"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:22.790952"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:22.790952"]]  (1.3ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-07 23:46:22 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.1ms) Rendered people/index.html.haml within layouts/application (12.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:46:22 -0400 Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-07 23:46:23 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (12.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:46:23 -0400 Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-07 23:46:23 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (9.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:46:23 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-07 23:46:24 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.7ms) Rendered people/index.html.haml within layouts/application (12.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:46:24 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (4.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:25.393697"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:25.393697"]]  (1.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:46:25 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:46:25 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (18.3ms) Rendered people/edit.html.haml within layouts/application (20.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.2ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.4ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:25.445479"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:25.445479"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-07 23:46:25 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:46:25 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-07 23:46:26 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.5ms) commit transaction Redirected to http://127.0.0.1:53276/people Completed 302 Found in 5ms (ActiveRecord: 2.2ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 23:46:26 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:46:26 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:46:27 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.4ms) Rendered people/new.html.haml within layouts/application (8.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-07 23:46:27 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"03", "dob(5i)"=>"46", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.7ms) Rendered people/_form.html.haml (7.8ms) Rendered people/new.html.haml within layouts/application (8.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 9.9ms | ActiveRecord: 0.1ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:46:27 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.1ms) Rendered people/new.html.haml within layouts/application (7.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:27.378169"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:27.378169"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:46:27 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.6ms) Rendered people/edit.html.haml within layouts/application (9.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.0ms | ActiveRecord: 0.3ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:46:27 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.8ms) Rendered people/new.html.haml within layouts/application (9.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:46:27 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-07 23:46:28 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"7", "dob(4i)"=>"23", "dob(5i)"=>"46", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:28.341301"], ["dob", "2012-08-07 23:46:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:28.341301"]]  (1.3ms) commit transaction Redirected to http://127.0.0.1:53276/people Completed 302 Found in 5ms (ActiveRecord: 1.8ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 23:46:28 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-07 23:46:28 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:29.187276"], ["dob", "2012-08-08 03:46:29.186141"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:29.187276"]]  (1.4ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:46:29 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.3ms) Rendered people/edit.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-07 23:46:29 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"7", "dob(4i)"=>"23", "dob(5i)"=>"46", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-07 23:46:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-08 03:46:29.228889"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 8ms (ActiveRecord: 2.0ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 23:46:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.4ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:29.265287"], ["dob", "1984-08-08 03:43:50.987541"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 03:46:29.265287"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:46:29 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.7ms) Rendered people/edit.html.haml within layouts/application (9.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-07 23:46:29 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"03", "dob(5i)"=>"43", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-08 03:43:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-08 03:46:29.295578"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-07 23:46:29 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (9.5ms) Rendered people/edit.html.haml within layouts/application (9.9ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:46:29 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.2ms) Rendered people/new.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-07 23:46:29 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"03", "dob(5i)"=>"46", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:29.354482"], ["dob", "2014-08-08 03:46:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 03:46:29.354482"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.2ms) Started GET "/people" for 127.0.0.1 at 2014-08-07 23:46:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (14.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.5ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:46:29 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (9.8ms) Rendered people/new.html.haml within layouts/application (10.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-07 23:46:29 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"03", "dob(5i)"=>"46", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 03:46:29.413617"], ["dob", "2014-08-08 03:46:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 03:46:29.413617"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-07 23:46:29 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.3ms) Rendered people/new.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:27:11 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (95.2ms) Rendered people/new.html.haml within layouts/application (101.2ms) Rendered application/_flash_messages.html.haml (31.3ms) Completed 200 OK in 247ms (Views: 242.9ms | ActiveRecord: 0.4ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 09:27:11 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"27", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.7ms) Rendered people/_form.html.haml (6.5ms) Rendered people/new.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 15ms (Views: 8.4ms | ActiveRecord: 0.2ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:27:11 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (68.4ms) Rendered people/new.html.haml within layouts/application (68.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 71ms (Views: 70.4ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 09:27:11 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"27", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:11.935049"], ["dob", "2014-08-08 13:27:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 13:27:11.935049"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 7ms (ActiveRecord: 1.6ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:27:11 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.2ms) Rendered people/new.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:11.968156"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:11.968156"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:27:11 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.6ms) Rendered people/edit.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 9.9ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 09:27:11 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"27", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-08 13:27:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-08 13:27:11.994749"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:27:11 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (9.4ms) Rendered people/edit.html.haml within layouts/application (9.7ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.1ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:27:12 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (18.7ms) Rendered people/new.html.haml within layouts/application (19.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 09:27:12 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"27", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:12.068997"], ["dob", "2014-08-08 13:27:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 13:27:12.068997"]]  (1.4ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 1.9ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:12 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (2.2ms) Rendered application/_search_form.html.haml (1.9ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (5.1ms) Rendered people/index.html.haml within layouts/application (21.4ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 27ms (Views: 24.5ms | ActiveRecord: 0.5ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:12.114804"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:12.114804"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:27:12 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.9ms) Rendered people/edit.html.haml within layouts/application (7.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.1ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:27:12 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.8ms) Rendered people/new.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:12.160396"], ["dob", "2012-08-08 13:27:12.159396"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:12.160396"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:27:12 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.8ms) Rendered people/edit.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 09:27:12 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"09", "dob(5i)"=>"27", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.5ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-08 09:27:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-08 13:27:12.194317"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:12 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.4ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:27:16 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (10.7ms) Rendered people/new.html.haml within layouts/application (11.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-08 09:27:16 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:27:16 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-08 09:27:17 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"09", "dob(5i)"=>"27", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.3ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:17.059543"], ["dob", "2012-08-08 09:27:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:17.059543"]]  (1.0ms) commit transaction Redirected to http://127.0.0.1:56211/people Completed 302 Found in 6ms (ActiveRecord: 2.0ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:17 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.6ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (3.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:18.072238"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:18.072238"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (5.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.5ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-08 09:27:18 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.2ms) commit transaction Redirected to http://127.0.0.1:56211/people Completed 302 Found in 5ms (ActiveRecord: 1.9ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.3ms)  (0.2ms) SELECT COUNT(*) FROM "people"  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:19.898555"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:19.898555"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:27:19 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.3ms) Rendered people/edit.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.1ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-08 09:27:20 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.451182"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_6@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.451182"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.454161"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_7@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.454161"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.457711"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_8@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.457711"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.460857"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_9@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.460857"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.463828"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.463828"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-08 09:27:20 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (5.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.501881"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.501881"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.505082"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.505082"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.509574"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.509574"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.512288"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.512288"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.514917"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.514917"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.517950"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.517950"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.520935"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.520935"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.523607"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.523607"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.526341"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.526341"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.529591"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.529591"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.532639"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.532639"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.536541"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.536541"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.539621"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.539621"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.542500"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.542500"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.545946"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.545946"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.549501"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.549501"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.552386"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.552386"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.555187"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.555187"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.557915"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.557915"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.560572"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.560572"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.563223"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.563223"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.566774"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.566774"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.569631"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.569631"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.572459"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.572459"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.575323"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.575323"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.578152"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.578152"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.580931"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.580931"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.583597"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.583597"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.586509"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.586509"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.589570"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.589570"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.592682"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.592682"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.595770"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.595770"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.598813"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.598813"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.601843"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.601843"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.604896"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.604896"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.608404"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.608404"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.611733"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.611733"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.614838"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.614838"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.618452"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.618452"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.621375"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.621375"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.624442"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.624442"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.627991"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.627991"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.631303"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.631303"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.634369"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.634369"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.637711"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.637711"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.641349"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.641349"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.644376"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_94@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.644376"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.647470"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.647470"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.650386"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.650386"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:20.653784"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:20.653784"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (13.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.8ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-08-08 09:27:20 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (13.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 1.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.897197"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.897197"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.900030"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.900030"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.903405"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.903405"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.905978"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.905978"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.909119"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.909119"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.912039"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.912039"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.914562"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.914562"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.917140"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.917140"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.919849"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.919849"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.922538"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.922538"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.925679"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.925679"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.929806"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.929806"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.933218"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.933218"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.936051"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.936051"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.938584"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.938584"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.941254"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.941254"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.944484"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.944484"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.947185"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.947185"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.949787"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.949787"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.952315"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.952315"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.955628"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.955628"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.959087"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.959087"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.962422"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.962422"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.965177"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.965177"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.968691"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.968691"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.971677"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.971677"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.974936"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.974936"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.977850"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.977850"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.980577"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.980577"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.983135"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.983135"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:21.986011"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:21.986011"]]  (1.0ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-08 09:27:22 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.7ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-08 09:27:22 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.9ms) Rendered people/index.html.haml within layouts/application (13.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.8ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-08 09:27:23 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.9ms) Rendered people/index.html.haml within layouts/application (11.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.6ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-08 09:27:24 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.5ms) Rendered people/index.html.haml within layouts/application (17.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.8ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (21.4ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.8ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:25.963763"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:25.963763"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:25.967277"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:25.967277"]]  (37.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.006893"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.006893"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.010778"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.010778"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.014389"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.014389"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.017479"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.017479"]]  (9.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.029785"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.029785"]]  (24.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.056497"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.056497"]]  (13.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.072175"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.072175"]]  (11.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.085623"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.085623"]]  (13.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.101403"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.101403"]]  (18.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.122497"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.122497"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.126001"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.126001"]]  (8.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.137406"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.137406"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.141534"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.141534"]]  (8.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.152915"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.152915"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.156661"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.156661"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.160382"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.160382"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.163751"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.163751"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.167291"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.167291"]]  (28.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.198171"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.198171"]]  (7.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.208550"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.208550"]]  (66.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.276840"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.276840"]]  (8.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.288005"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.288005"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.294246"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.294246"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.299310"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.299310"]]  (30.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.332674"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.332674"]]  (47.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.382615"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.382615"]]  (41.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.426102"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.426102"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.429146"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.429146"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:26.432689"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:26.432689"]]  (1.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:26 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-08 09:27:26 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (16.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.7ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.191316"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.191316"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.194864"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.194864"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.197883"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.197883"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.200985"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.200985"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.204079"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.204079"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.207421"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.207421"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.210186"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.210186"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.212739"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.212739"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.215556"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.215556"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.218294"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.218294"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.221942"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.221942"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.224636"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.224636"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.227857"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.227857"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.231538"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.231538"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.234948"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.234948"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.238494"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.238494"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.241325"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.241325"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.244686"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.244686"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.247534"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.247534"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.250640"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.250640"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.253403"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.253403"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.256304"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.256304"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.258951"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.258951"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.261975"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.261975"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.265700"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.265700"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.269372"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.269372"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.272298"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.272298"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.275063"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.275063"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.278099"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.278099"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.280859"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.280859"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:27.283939"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:27.283939"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:27 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (16.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 17.4ms | ActiveRecord: 0.8ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-08 09:27:27 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (18.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 23ms (Views: 19.7ms | ActiveRecord: 1.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.103186"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.103186"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.105775"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.105775"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.108267"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.108267"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.110899"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.110899"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.113412"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.113412"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.116053"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.116053"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.118809"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.118809"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.121457"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.121457"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.123946"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.123946"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.126510"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.126510"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.128950"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.128950"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.131651"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.131651"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.134191"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.134191"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.136778"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.136778"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.139619"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.139619"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.142661"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.142661"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.145902"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.145902"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.149006"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.149006"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.152801"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.152801"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.155789"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.155789"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.158544"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.158544"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.166321"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.166321"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.171085"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.171085"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.173918"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.173918"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.176872"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.176872"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.180366"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.180366"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.182936"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.182936"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.185559"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.185559"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.189444"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.189444"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.192790"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.192790"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.195785"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.195785"]]  (1.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:28 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (12.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-08 09:27:28 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 12.6ms | ActiveRecord: 0.6ms)  (3.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.6ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.684652"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.684652"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.687311"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.687311"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.690999"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.690999"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.694242"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.694242"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.696918"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.696918"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.700722"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.700722"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.704076"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.704076"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.706908"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.706908"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.709741"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.709741"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.712533"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.712533"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.715692"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.715692"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.718487"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.718487"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.721080"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.721080"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.723658"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.723658"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.726811"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.726811"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.730127"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.730127"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.732837"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.732837"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.735452"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.735452"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.738413"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.738413"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.741180"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.741180"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.743648"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.743648"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.746756"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.746756"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.749504"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.749504"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.752245"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.752245"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.754894"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.754894"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.758717"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.758717"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.762530"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.762530"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.766250"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.766250"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.769135"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.769135"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.772132"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.772132"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.775184"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.775184"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:28 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (12.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.7ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:28.809407"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:28.809407"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:28 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.4ms)  (3.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.151423"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.151423"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.154310"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.154310"]]  (0.9ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.157322"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.157322"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.160334"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.160334"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.163251"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.163251"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.166789"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.166789"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.170371"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.170371"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.174415"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.174415"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.178187"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.178187"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.181720"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.181720"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.185659"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.185659"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.188393"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.188393"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.190969"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.190969"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.193580"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.193580"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.196360"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.196360"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.199086"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.199086"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.202473"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.202473"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.206389"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.206389"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.209622"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.209622"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.213056"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.213056"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.216364"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.216364"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.219606"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.219606"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.222350"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.222350"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.225292"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.225292"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.228525"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.228525"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.231321"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.231321"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.233932"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.233932"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.236463"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.236463"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.239303"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.239303"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.241982"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.241982"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:27:29.245164"], ["dob", "1984-08-08 13:27:07.019874"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:27:29.245164"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:27:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.6ms) Rendered people/index.html.haml within layouts/application (17.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.8ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-08 09:27:29 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (12.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-08 09:27:29 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (14.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.6ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:28:01 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (28.4ms) Rendered people/new.html.haml within layouts/application (33.5ms) Rendered application/_flash_messages.html.haml (10.2ms) Completed 200 OK in 68ms (Views: 65.2ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 09:28:01 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"28", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.6ms) Rendered people/_form.html.haml (6.3ms) Rendered people/new.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 15ms (Views: 8.0ms | ActiveRecord: 0.2ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:28:01 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (9.1ms) Rendered people/new.html.haml within layouts/application (9.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 09:28:01 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"28", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:01.398029"], ["dob", "2014-08-08 13:28:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 13:28:01.398029"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 7ms (ActiveRecord: 1.4ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:28:01 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.9ms) Rendered people/new.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 77ms (Views: 76.5ms | ActiveRecord: 0.0ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:28:01 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.7ms) Rendered people/new.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 09:28:01 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"28", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:01.518777"], ["dob", "2014-08-08 13:28:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 13:28:01.518777"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.2ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:01 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.6ms) Rendered people/index.html.haml within layouts/application (18.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 23ms (Views: 21.2ms | ActiveRecord: 0.4ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:01.557440"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:01.557440"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:28:01 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (12.2ms) Rendered people/edit.html.haml within layouts/application (14.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 09:28:01 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"27", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-08 13:27:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-08 13:28:01.593774"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 6ms (ActiveRecord: 1.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:28:01 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.5ms) Rendered people/edit.html.haml within layouts/application (7.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.2ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:01.625262"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:01.625262"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:28:01 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (1.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.8ms) Rendered people/edit.html.haml within layouts/application (8.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.1ms | ActiveRecord: 1.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:28:01 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.4ms) Rendered people/new.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:01.672714"], ["dob", "2012-08-08 13:28:01.671742"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:01.672714"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:28:01 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.9ms) Rendered people/edit.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 09:28:01 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"09", "dob(5i)"=>"28", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-08 09:28:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-08 13:28:01.707373"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:01 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:28:04 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (15.8ms) Rendered people/new.html.haml within layouts/application (16.3ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-08 09:28:04 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:28:04 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-08 09:28:05 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"09", "dob(5i)"=>"28", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.3ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:05.380080"], ["dob", "2012-08-08 09:28:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:05.380080"]]  (1.0ms) commit transaction Redirected to http://127.0.0.1:56777/people Completed 302 Found in 6ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:05 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 10ms (Views: 7.9ms | ActiveRecord: 1.1ms)  (1.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:06.393204"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:06.393204"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.4ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-08 09:28:07 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.2ms) commit transaction Redirected to http://127.0.0.1:56777/people Completed 302 Found in 4ms (ActiveRecord: 1.8ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:07 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.3ms)  (0.2ms) SELECT COUNT(*) FROM "people"  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.189302"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.189302"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.1ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:28:08 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.4ms) Rendered people/edit.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.223464"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.223464"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.226229"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.226229"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.229381"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.229381"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.231784"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.231784"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.234204"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.234204"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.236888"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.236888"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.239472"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.239472"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.242626"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.242626"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.245243"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.245243"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.248855"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.248855"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.251501"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.251501"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.254948"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.254948"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.257922"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.257922"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.261039"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.261039"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.264375"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.264375"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.266893"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.266893"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.269498"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.269498"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.273025"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.273025"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.275930"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.275930"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.278770"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.278770"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.281505"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.281505"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.284161"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.284161"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.287015"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.287015"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.289631"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.289631"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.292182"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.292182"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.294884"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.294884"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.297868"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.297868"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.301418"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.301418"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.304377"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.304377"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.307497"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.307497"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:08.310253"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:08.310253"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-08 09:28:08 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.0ms) Rendered people/index.html.haml within layouts/application (12.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.7ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-08 09:28:08 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.4ms) Rendered people/index.html.haml within layouts/application (12.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.8ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-08 09:28:09 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.7ms) Rendered people/index.html.haml within layouts/application (13.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.7ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-08 09:28:10 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.2ms) Rendered people/index.html.haml within layouts/application (12.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 14.6ms | ActiveRecord: 0.8ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.104926"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.104926"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.108373"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.108373"]]  (1.0ms) commit transaction  (0.2ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.112157"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.112157"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.115465"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.115465"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.118303"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.118303"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.121116"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.121116"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.124596"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.124596"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.128780"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.128780"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.131904"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.131904"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.135153"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.135153"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.138339"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.138339"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.141926"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.141926"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.145522"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.145522"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.149324"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.149324"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.152628"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.152628"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.157909"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.157909"]]  (5.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.166317"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.166317"]]  (5.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.174640"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.174640"]]  (7.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.184848"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.184848"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.188754"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.188754"]]  (16.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.207389"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.207389"]]  (22.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.232078"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.232078"]]  (20.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.254543"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.254543"]]  (14.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.271450"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.271450"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.277708"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.277708"]]  (8.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.288462"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.288462"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.290991"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.290991"]]  (6.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.299006"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.299006"]]  (9.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.311328"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.311328"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.315094"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.315094"]]  (4.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:11.321338"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:11.321338"]]  (11.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (12.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-08 09:28:11 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (13.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.8ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.296483"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.296483"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.299282"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.299282"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.301973"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.301973"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.304563"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.304563"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.307428"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.307428"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.311318"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.311318"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.314284"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.314284"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.317308"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.317308"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.320640"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.320640"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.323470"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.323470"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.327412"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.327412"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.330909"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.330909"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.334836"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.334836"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.337681"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.337681"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.340252"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.340252"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.343410"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.343410"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.346068"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.346068"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.348676"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.348676"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.352024"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.352024"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.354974"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.354974"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.358888"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.358888"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.362945"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.362945"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.365895"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.365895"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.368819"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.368819"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.371387"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.371387"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.374950"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.374950"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.377738"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.377738"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.380308"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.380308"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.383510"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.383510"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.386937"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.386937"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.392642"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.392642"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:12 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 12.9ms | ActiveRecord: 0.7ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.424716"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.424716"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.427795"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.427795"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.430429"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.430429"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.433220"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.433220"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.435881"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.435881"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.438520"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.438520"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.441337"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.441337"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.443932"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.443932"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.446865"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.446865"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.449486"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.449486"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.452975"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.452975"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.455786"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.455786"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.458837"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.458837"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.462609"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.462609"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.465534"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.465534"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.468686"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.468686"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.471419"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.471419"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.474547"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.474547"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.477761"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.477761"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.480472"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.480472"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.483671"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.483671"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.487290"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.487290"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.490523"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.490523"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.493612"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.493612"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.496874"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.496874"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.500056"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.500056"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.502719"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.502719"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.506039"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.506039"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.509111"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.509111"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.511899"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.511899"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:12.514863"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:12.514863"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:12 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (14.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.9ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-08 09:28:12 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (0.9ms) Person Load (1.9ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (23.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 29ms (Views: 23.5ms | ActiveRecord: 2.7ms)  (2.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.7ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.495512"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.495512"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.498863"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.498863"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.501715"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.501715"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.504423"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.504423"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.507647"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.507647"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.510563"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.510563"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.514202"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.514202"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.517235"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.517235"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.520025"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.520025"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.522765"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.522765"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.526188"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.526188"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.529779"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.529779"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.532598"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.532598"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.535622"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.535622"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.538821"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.538821"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.541894"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.541894"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.544535"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.544535"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.547070"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.547070"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.549760"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.549760"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.552360"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.552360"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.554991"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.554991"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.558207"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.558207"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.560837"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.560837"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.563613"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.563613"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.566624"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.566624"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.570299"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.570299"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.574381"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.574381"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.578211"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.578211"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.581442"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.581442"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.584804"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.584804"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:13.588687"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:13.588687"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (14.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-08 09:28:13 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (10.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.6ms)  (2.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.117114"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.117114"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.467051"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.467051"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.469989"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.469989"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.472562"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.472562"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.475140"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.475140"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.477789"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.477789"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.480582"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.480582"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.483057"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.483057"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.485785"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.485785"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.488238"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.488238"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.490776"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.490776"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.494011"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.494011"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.497803"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.497803"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.501453"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.501453"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.504917"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.504917"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.508214"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.508214"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.511288"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.511288"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.515317"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.515317"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.518244"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.518244"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.520821"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.520821"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.523438"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.523438"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.526621"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.526621"]]  (1.7ms) commit transaction  (0.2ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.530410"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.530410"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.533143"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.533143"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.535934"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.535934"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.539020"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.539020"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.541644"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.541644"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.544276"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.544276"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.546909"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.546909"]]  (0.9ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.550250"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_190@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.550250"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.554037"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_191@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.554037"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:14.557160"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_192@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:14.557160"]]  (1.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (12.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-08 09:28:14 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (11.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-08 09:28:14 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (16.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.7ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.2ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.2ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-08 09:28:14 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 5.9ms | ActiveRecord: 0.2ms)  (2.9ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.134234"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_193@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.134234"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.145703"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_194@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.145703"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.148358"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_195@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.148358"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.150997"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoe_196@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.150997"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.153761"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.153761"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.5ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-08 09:28:15 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.4ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.192498"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.192498"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.195322"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.195322"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.197984"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.197984"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.200608"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.200608"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.203470"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.203470"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.206351"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.206351"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.209191"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.209191"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.211984"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.211984"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.215087"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.215087"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.218086"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.218086"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.221200"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.221200"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.224004"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.224004"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.228672"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.228672"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.232347"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.232347"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.235897"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.235897"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.239110"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.239110"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.242523"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.242523"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.245769"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.245769"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.248938"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.248938"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.252764"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.252764"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.256979"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.256979"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.260548"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.260548"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.263534"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.263534"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.267188"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.267188"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.270459"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.270459"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.273666"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_66@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.273666"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.277377"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.277377"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.281104"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.281104"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.284603"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.284603"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.287784"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.287784"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.290891"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.290891"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.294184"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.294184"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.297192"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.297192"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.300384"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.300384"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.304073"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.304073"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.307601"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.307601"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.311346"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.311346"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.315079"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.315079"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.318883"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.318883"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.322561"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.322561"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.326027"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.326027"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.329771"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.329771"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.333129"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.333129"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.336586"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.336586"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.339806"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.339806"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.343194"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.343194"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.346578"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.346578"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.349877"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.349877"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.353687"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.353687"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:28:15.356922"], ["dob", "1984-08-08 13:27:58.244324"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:28:15.356922"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:28:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.9ms) Rendered people/index.html.haml within layouts/application (14.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 19ms (Views: 16.9ms | ActiveRecord: 0.9ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-08-08 09:28:15 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (15.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 20ms (Views: 17.0ms | ActiveRecord: 1.2ms)  (2.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-08-08 13:28:21.469810"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.469810"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-08-08 13:28:21.473439"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.473439"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-08-08 13:28:21.476192"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.476192"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-08-08 13:28:21.478837"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.478837"]]  (1.0ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-08-08 13:28:21.481517"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.481517"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-08-08 13:28:21.485560"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.485560"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-08-08 13:28:21.488604"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.488604"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-08-08 13:28:21.491604"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.491604"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-08-08 13:28:21.494501"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.494501"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-08-08 13:28:21.497086"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.497086"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-08-08 13:28:21.499695"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.499695"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-08-08 13:28:21.502498"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.502498"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-08-08 13:28:21.505844"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.505844"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-08-08 13:28:21.509680"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.509680"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-08-08 13:28:21.513446"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.513446"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-08-08 13:28:21.516467"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.516467"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-08-08 13:28:21.519274"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.519274"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-08-08 13:28:21.522137"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.522137"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-08-08 13:28:21.525258"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.525258"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-08-08 13:28:21.528896"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.528896"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-08-08 13:28:21.533369"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.533369"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-08-08 13:28:21.536310"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.536310"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-08-08 13:28:21.539596"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.539596"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-08-08 13:28:21.543404"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.543404"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-08-08 13:28:21.546510"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.546510"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-08-08 13:28:21.549761"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.549761"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-08-08 13:28:21.553187"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.553187"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-08-08 13:28:21.556414"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.556414"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-08-08 13:28:21.559595"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.559595"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-08-08 13:28:21.563310"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.563310"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-08-08 13:28:21.567641"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.567641"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-08 09:28:21 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.6ms) Rendered credit_card_infos/index.html.haml within layouts/application (12.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 35ms (Views: 33.5ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-08-08 09:28:21 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.2ms) Rendered credit_card_infos/index.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-08-08 09:28:21 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.5ms)  (2.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-08-08 13:28:21.660436"], ["exp_date", "2016-08-08"], ["secret_code", "90d7de7628a59344"], ["updated_at", "2014-08-08 13:28:21.660436"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-08 09:28:21 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (2.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.3ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-08-08 13:29:02.586010"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.586010"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-08 09:29:02 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (19.4ms) Rendered application/_flash_messages.html.haml (10.6ms) Completed 200 OK in 53ms (Views: 52.3ms | ActiveRecord: 0.4ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-08-08 13:29:02.674390"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.674390"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-08-08 13:29:02.677674"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.677674"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-08-08 13:29:02.680864"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.680864"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-08-08 13:29:02.683550"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.683550"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-08-08 13:29:02.686459"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.686459"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-08-08 13:29:02.689238"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.689238"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-08-08 13:29:02.692039"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.692039"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-08-08 13:29:02.694795"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.694795"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-08-08 13:29:02.697446"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.697446"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-08-08 13:29:02.700211"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.700211"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-08-08 13:29:02.702885"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.702885"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-08-08 13:29:02.705549"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.705549"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-08-08 13:29:02.708197"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.708197"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-08-08 13:29:02.711889"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.711889"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-08-08 13:29:02.714923"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.714923"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-08-08 13:29:02.717611"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.717611"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-08-08 13:29:02.720210"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.720210"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-08-08 13:29:02.723337"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.723337"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-08-08 13:29:02.726487"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.726487"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-08-08 13:29:02.729848"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.729848"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-08-08 13:29:02.733126"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.733126"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-08-08 13:29:02.736314"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.736314"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-08-08 13:29:02.739743"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.739743"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-08-08 13:29:02.744105"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.744105"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-08-08 13:29:02.747789"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.747789"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-08-08 13:29:02.751183"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.751183"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-08-08 13:29:02.754177"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.754177"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-08-08 13:29:02.757528"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.757528"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-08-08 13:29:02.761374"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.761374"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-08-08 13:29:02.764940"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.764940"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-08-08 13:29:02.768125"], ["exp_date", "2016-08-08"], ["secret_code", "4200c38b7ec16d75"], ["updated_at", "2014-08-08 13:29:02.768125"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-08 09:29:02 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.5ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.6ms) Rendered credit_card_infos/index.html.haml within layouts/application (9.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.9ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-08-08 09:29:02 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (4.1ms) Rendered credit_card_infos/index.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-08-08 09:29:02 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.5ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:07 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.6ms) Rendered application/_search_form.html.haml (1.6ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (14.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 110ms (Views: 106.5ms | ActiveRecord: 0.5ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.7ms) DELETE FROM "dinosaurs";  (1.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.8ms) DELETE FROM "people";  (1.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:10 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 12ms (Views: 10.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-08 09:29:10 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:10 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-08 09:29:10 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:10 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:10 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:10 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.823480"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.823480"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.828224"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.828224"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.831634"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_31@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.831634"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.834928"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.834928"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.838271"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.838271"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.841185"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.841185"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.844322"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.844322"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.847586"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.847586"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.852059"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.852059"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.855079"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.855079"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.858471"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.858471"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.861943"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.861943"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.864976"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.864976"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.867949"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.867949"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.870856"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.870856"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.873637"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.873637"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.876757"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.876757"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.880975"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.880975"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.883863"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_66@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.883863"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.886985"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.886985"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.889935"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.889935"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.892875"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.892875"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.896015"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.896015"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.899119"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.899119"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.902673"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.902673"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.905525"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.905525"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.908299"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.908299"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.911187"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.911187"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.914182"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.914182"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.917507"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.917507"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.920565"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.920565"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.923774"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.923774"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.926894"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.926894"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.929892"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.929892"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.932765"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.932765"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.936429"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.936429"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.939481"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.939481"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.942872"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.942872"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.945896"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.945896"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.948983"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.948983"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.952226"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.952226"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.955503"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_31@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.955503"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.958697"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.958697"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.961753"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.961753"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.965791"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.965791"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.969038"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.969038"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.972847"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.972847"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.977522"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.977522"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.981023"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.981023"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:10.984511"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:10.984511"]]  (1.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:10 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (15.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 1.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:11 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.202883"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_1@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.202883"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.206135"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_2@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.206135"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.208856"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_3@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.208856"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.211520"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_4@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.211520"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.214183"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.214183"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-08 09:29:13 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (5.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.3ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.269166"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_5@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.269166"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.272109"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_6@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.272109"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.275275"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_7@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.275275"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.278175"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.278175"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.280763"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.280763"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.283687"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.283687"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.286451"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.286451"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.289312"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.289312"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.292430"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.292430"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.295564"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.295564"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.299026"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.299026"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.301867"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.301867"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.304768"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.304768"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.307609"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.307609"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.310299"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.310299"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.313271"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.313271"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.315918"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.315918"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.318636"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.318636"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.321341"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.321341"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.324172"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.324172"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.327198"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.327198"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.330814"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.330814"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.333614"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.333614"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.336384"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.336384"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.339750"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.339750"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.342371"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.342371"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.344965"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.344965"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.347619"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.347619"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.350483"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.350483"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.353432"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.353432"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.356319"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.356319"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (8.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.9ms) Rendered people/index.html.haml within layouts/application (25.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 28ms (Views: 18.6ms | ActiveRecord: 8.7ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-08 09:29:13 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (11.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-08 09:29:13 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (15.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.6ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.458502"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.458502"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:13 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.743675"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.743675"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.746513"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.746513"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.749024"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.749024"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.751882"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.751882"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.755142"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.755142"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.758239"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.758239"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.760949"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.760949"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.763594"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.763594"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.766354"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.766354"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.769117"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.769117"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.772141"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.772141"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.774853"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.774853"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.778311"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.778311"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.781570"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.781570"]]  (1.7ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.785384"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.785384"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.788478"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.788478"]]  (1.0ms) [1mcommit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.791350"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.791350"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.794084"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.794084"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.796957"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.796957"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.801944"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.801944"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.806195"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.806195"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.809282"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.809282"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.812340"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.812340"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.814844"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.814844"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.817802"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.817802"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.820591"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.820591"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.823468"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.823468"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.826433"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.826433"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.829280"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.829280"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.831832"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.831832"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.834629"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.834629"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (11.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.6ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.866012"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.866012"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.869046"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.869046"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.871940"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.871940"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.874645"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.874645"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.877131"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.877131"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.879862"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.879862"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.882579"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.882579"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.885160"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.885160"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.888153"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.888153"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.890865"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.890865"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.894102"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.894102"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.897585"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.897585"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.900281"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.900281"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.903276"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.903276"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.907039"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.907039"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.910675"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.910675"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.913572"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.913572"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.916127"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.916127"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.919033"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.919033"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.922100"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.922100"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.925075"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.925075"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.928080"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.928080"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.930762"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.930762"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.933620"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.933620"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.937232"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.937232"]]  (5.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.944739"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.944739"]]  (2.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.948712"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.948712"]]  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.953857"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.953857"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.957493"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.957493"]]  (4.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.964184"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.964184"]]  (11.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:13.977413"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:13.977413"]]  (13.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.9ms) Rendered people/index.html.haml within layouts/application (16.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 17.3ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:14 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-08 09:29:14 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.4ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (21.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 25ms (Views: 21.8ms | ActiveRecord: 1.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:14 -0400  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.4ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.846713"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.846713"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.851584"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.851584"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.854104"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.854104"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.856777"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.856777"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.859525"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.859525"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.862028"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.862028"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.864917"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.864917"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.867667"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.867667"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.870682"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.870682"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.874414"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.874414"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.877904"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.877904"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.881103"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.881103"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.884605"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.884605"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.887626"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.887626"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.890393"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.890393"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.893244"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.893244"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.895907"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.895907"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.898510"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.898510"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.900994"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.900994"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.904040"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.904040"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.906635"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.906635"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.909166"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.909166"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.911656"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.911656"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.914401"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.914401"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.917146"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.917146"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.920753"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.920753"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.923628"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.923628"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.926233"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.926233"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.928911"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.928911"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.931416"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.931416"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:14.934529"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:14.934529"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (13.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:14 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-08 09:29:15 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:15 -0400  (2.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.3ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.457722"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.457722"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.461593"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.461593"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.464296"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.464296"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.467114"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.467114"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.470340"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.470340"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.473165"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.473165"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.475903"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.475903"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.478952"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.478952"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.481636"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.481636"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.485188"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.485188"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.488479"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.488479"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.491916"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.491916"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.495112"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.495112"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.497684"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.497684"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.500248"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.500248"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.503469"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.503469"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.506986"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.506986"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.509948"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.509948"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.512542"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.512542"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.515024"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.515024"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.518512"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.518512"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.521432"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.521432"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.524135"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.524135"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.526736"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.526736"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.529769"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.529769"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.532897"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.532897"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.535561"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.535561"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.538496"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.538496"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.541927"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.541927"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.544804"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.544804"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:15.547742"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:15.547742"]]  (2.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.6ms) Rendered people/index.html.haml within layouts/application (14.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:15 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-08 09:29:15 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.8ms) Rendered people/index.html.haml within layouts/application (22.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 26ms (Views: 24.2ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:15 -0400  (2.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.6ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.288479"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.288479"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.291357"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.291357"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.295130"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.295130"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.297736"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.297736"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.300612"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.300612"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.303301"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.303301"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.306006"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.306006"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.308427"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.308427"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.310941"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.310941"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.313602"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.313602"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.316755"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.316755"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.319657"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.319657"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.322761"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.322761"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.326226"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.326226"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.329530"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.329530"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.332320"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.332320"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.335308"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.335308"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.338028"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.338028"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.341537"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.341537"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.344691"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.344691"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.347386"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.347386"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.350177"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.350177"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.353011"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.353011"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.355681"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.355681"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.358341"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.358341"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.361026"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.361026"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.364640"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.364640"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.367515"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.367515"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.370131"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.370131"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.372762"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.372762"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:16.375610"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:16.375610"]]  (1.0ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-08 09:29:16 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.0ms) Rendered people/index.html.haml within layouts/application (11.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:16 -0400 Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-08 09:29:16 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (12.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:16 -0400 Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-08 09:29:17 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:17 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-08 09:29:18 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (10.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:18 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (2.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:19.198663"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:19.198663"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:29:19 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (21.1ms) Rendered people/edit.html.haml within layouts/application (23.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 27ms (Views: 26.0ms | ActiveRecord: 0.2ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:19.250337"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:19.250337"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (5.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:19 -0400  (0.1ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-08 09:29:20 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.5ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.1ms) commit transaction Redirected to http://127.0.0.1:57342/people Completed 302 Found in 6ms (ActiveRecord: 1.9ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:20 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:29:21 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.3ms) Rendered people/new.html.haml within layouts/application (8.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 09:29:21 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"29", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (1.9ms) Rendered people/_form.html.haml (7.6ms) Rendered people/new.html.haml within layouts/application (8.1ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 16ms (Views: 10.3ms | ActiveRecord: 0.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:29:21 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.5ms) Rendered people/new.html.haml within layouts/application (7.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:21.302090"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:21.302090"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:29:21 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.4ms) Rendered people/edit.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:29:21 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.1ms) Rendered people/new.html.haml within layouts/application (8.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:21 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-08 09:29:22 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"09", "dob(5i)"=>"29", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:22.163210"], ["dob", "2012-08-08 09:29:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:22.163210"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:57342/people Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:22 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:29:22 -0400  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.8ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:23.047696"], ["dob", "2012-08-08 13:29:23.046665"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:23.047696"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:29:23 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.1ms) Rendered people/edit.html.haml within layouts/application (7.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 09:29:23 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"09", "dob(5i)"=>"29", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-08 09:29:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-08 13:29:23.082845"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 7ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:23 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.4ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:23.115617"], ["dob", "1984-08-08 13:28:59.595264"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:29:23.115617"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:29:23 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.7ms) Rendered people/edit.html.haml within layouts/application (7.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 09:29:23 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"28", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-08 13:28:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-08 13:29:23.139891"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:29:23 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.3ms) Rendered people/edit.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (8.8ms) Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:29:23 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.7ms) Rendered people/new.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 09:29:23 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"29", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:23.198129"], ["dob", "2014-08-08 13:29:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 13:29:23.198129"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:29:23 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (4.5ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:29:23 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.6ms) Rendered people/new.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 09:29:23 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"29", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:29:23.243310"], ["dob", "2014-08-08 13:29:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 13:29:23.243310"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:29:23 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.3ms) Rendered people/new.html.haml within layouts/application (8.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.6ms) Rendered application/_search_form.html.haml (1.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (8.4ms) Rendered people/index.html.haml within layouts/application (23.9ms) Rendered application/_flash_messages.html.haml (9.6ms) Completed 200 OK in 56ms (Views: 51.9ms | ActiveRecord: 0.5ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (8.7ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 15ms (Views: 12.2ms | ActiveRecord: 0.8ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-08 09:30:16 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:30:16 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-08 09:30:16 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.647914"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.647914"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.653551"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.653551"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.656419"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.656419"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.659339"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.659339"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.662323"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.662323"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.665569"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.665569"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.669176"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.669176"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.672056"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.672056"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.675606"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.675606"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.679303"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.679303"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.681980"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.681980"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.684886"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.684886"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.688004"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.688004"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.690942"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.690942"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.693651"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.693651"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.696447"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_33@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.696447"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.699549"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.699549"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.702647"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.702647"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.705487"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.705487"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.708234"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.708234"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.711169"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.711169"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.714391"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_99@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.714391"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.717104"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.717104"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.719881"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.719881"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.722607"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.722607"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.725473"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.725473"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.728793"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_77@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.728793"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.731549"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_20@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.731549"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.735064"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.735064"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.738174"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.738174"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.742287"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.742287"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.745348"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.745348"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.748570"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.748570"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.752241"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.752241"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.755835"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.755835"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.759167"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.759167"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.762293"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.762293"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.765547"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.765547"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.768647"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.768647"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.771677"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.771677"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.774637"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.774637"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.777675"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.777675"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.780637"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.780637"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.783897"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.783897"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.787589"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.787589"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.790948"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.790948"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.794033"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.794033"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.798407"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.798407"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.801664"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.801664"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:16.804916"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:16.804916"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.0ms) Rendered people/index.html.haml within layouts/application (15.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.7ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-08-08 09:30:17 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (11.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 12.7ms | ActiveRecord: 1.0ms)  (1.0ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.125260"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_1@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.125260"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.128372"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_2@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.128372"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.130982"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_3@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.130982"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.134037"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_4@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.134037"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.136968"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.136968"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (5.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-08 09:30:18 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (5.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.5ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (2.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.191707"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_5@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.191707"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.194489"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_6@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.194489"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.197028"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_7@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.197028"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.199747"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.199747"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.202299"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.202299"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.205266"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.205266"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.207717"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.207717"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.211824"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.211824"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.215209"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.215209"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.219093"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.219093"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.221599"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.221599"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.224333"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.224333"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.226980"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.226980"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.229978"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.229978"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.232570"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.232570"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.235405"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.235405"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.237970"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.237970"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.240573"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.240573"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.243011"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.243011"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.245798"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.245798"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.248194"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.248194"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.250763"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.250763"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.253798"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.253798"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.256771"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.256771"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.259351"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.259351"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.261937"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.261937"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.265013"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.265013"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.268188"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.268188"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.270630"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.270630"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.273648"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.273648"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.276074"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.276074"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.7ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-08 09:30:18 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (11.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-08 09:30:18 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (16.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 17.3ms | ActiveRecord: 0.7ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.368270"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.368270"]]  (1.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (5.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.677014"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.677014"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.679594"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.679594"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.682164"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.682164"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.684744"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.684744"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.687274"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.687274"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.690414"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.690414"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.692841"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.692841"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.695174"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.695174"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.697532"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.697532"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.700357"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.700357"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.703041"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.703041"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.705714"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.705714"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.708559"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.708559"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.711033"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.711033"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.713430"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.713430"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.715847"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.715847"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.718353"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.718353"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.720699"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.720699"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.723048"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.723048"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.726300"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.726300"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.729081"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.729081"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.731545"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.731545"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.734308"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.734308"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.737026"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.737026"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.739551"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.739551"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.742375"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.742375"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.744800"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.744800"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.747783"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.747783"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.750842"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.750842"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.753855"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.753855"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:18.757140"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:18.757140"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:18 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (14.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.9ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-08 09:30:19 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (17.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.8ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.7ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.573979"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.573979"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.577429"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.577429"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.579874"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.579874"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.582245"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.582245"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.585233"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.585233"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.587750"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.587750"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.590229"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.590229"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.593448"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.593448"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.595915"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.595915"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.598145"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.598145"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.600680"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.600680"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.603226"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.603226"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.605726"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.605726"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.608806"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.608806"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.611691"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.611691"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.614153"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.614153"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.616304"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.616304"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.618718"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.618718"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.621110"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.621110"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.623401"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.623401"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.625815"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.625815"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.628514"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.628514"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.631450"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.631450"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.641114"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.641114"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.644491"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.644491"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.646932"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.646932"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.649815"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.649815"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.655821"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.655821"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.658430"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.658430"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.661871"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.661871"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.664519"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.664519"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (10.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.6ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.693912"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.693912"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.696966"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.696966"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.699774"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.699774"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.702418"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.702418"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.704989"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.704989"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.707662"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.707662"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.709996"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.709996"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.712390"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.712390"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.714754"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.714754"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.717243"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.717243"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.719941"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.719941"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.722588"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.722588"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.725029"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.725029"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.727404"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.727404"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.729824"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.729824"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.732252"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.732252"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.735309"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.735309"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.738167"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.738167"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.740602"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.740602"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.743046"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.743046"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.745818"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.745818"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.748175"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.748175"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.750794"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.750794"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.753617"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.753617"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.757127"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.757127"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.759589"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.759589"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.762008"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.762008"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.765362"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.765362"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.768804"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.768804"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.771374"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.771374"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:19.774969"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:19.774969"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (12.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-08 09:30:20 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (10.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.7ms)  (1.9ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (3.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.8ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.247981"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.247981"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.251207"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.251207"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.254629"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.254629"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.258311"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.258311"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.262078"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.262078"]]  (0.9ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.265704"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.265704"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.269413"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.269413"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.272925"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.272925"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.276884"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.276884"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.279975"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.279975"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.282615"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.282615"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.286039"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.286039"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.289193"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.289193"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.292063"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.292063"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.295268"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.295268"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.297961"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.297961"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.300973"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.300973"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.303530"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.303530"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.305993"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.305993"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.308682"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.308682"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.311243"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.311243"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.314709"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.314709"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.317469"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.317469"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.320047"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.320047"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.322552"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.322552"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.326289"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.326289"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.329000"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.329000"]]  (0.8ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.331837"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.331837"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.334681"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.334681"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.337318"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.337318"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:20.340902"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:20.340902"]]  (1.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (15.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-08 09:30:20 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (13.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.7ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.046367"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.046367"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.049372"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.049372"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.052376"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.052376"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.054907"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.054907"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.057580"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.057580"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.060246"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.060246"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.062956"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.062956"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.065360"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.065360"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.068195"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.068195"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.070961"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.070961"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.074196"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.074196"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.076962"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.076962"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.079394"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.079394"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.081854"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.081854"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.085159"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.085159"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.087775"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.087775"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.091016"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.091016"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.094082"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.094082"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.096735"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.096735"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.099839"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.099839"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.103374"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.103374"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.105813"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.105813"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.109972"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.109972"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.113781"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.113781"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.117318"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.117318"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.120281"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.120281"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.123408"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.123408"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.126152"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.126152"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.128637"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.128637"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.131896"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.131896"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:21.134865"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:21.134865"]]  (1.0ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-08 09:30:21 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.9ms) Rendered people/index.html.haml within layouts/application (12.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.8ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-08 09:30:21 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (12.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 13.8ms | ActiveRecord: 0.7ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-08 09:30:22 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.6ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-08 09:30:23 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (5.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (8.2ms) Rendered people/index.html.haml within layouts/application (21.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 24ms (Views: 22.1ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:30:23 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:23.838989"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:23.838989"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:23 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:30:23 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (20.2ms) Rendered people/edit.html.haml within layouts/application (23.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 28ms (Views: 26.5ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:23.893201"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:23.893201"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:23 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (6.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:30:23 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-08 09:30:24 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.5ms) commit transaction Redirected to http://127.0.0.1:57968/people Completed 302 Found in 5ms (ActiveRecord: 2.1ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:24 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:30:24 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (1.9ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:30:25 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.0ms) Rendered people/new.html.haml within layouts/application (9.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 09:30:25 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"30", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (2.3ms) Rendered people/_form.html.haml (7.5ms) Rendered people/new.html.haml within layouts/application (7.8ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 17ms (Views: 9.8ms | ActiveRecord: 0.1ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:30:26 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.9ms) Rendered people/new.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:26.035942"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:26.035942"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:30:26 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (9.7ms) Rendered people/edit.html.haml within layouts/application (10.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 11.9ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:30:26 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.2ms) Rendered people/new.html.haml within layouts/application (8.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:30:26 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-08 09:30:26 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"09", "dob(5i)"=>"30", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:26.881254"], ["dob", "2012-08-08 09:30:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:26.881254"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:57968/people Completed 302 Found in 6ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:26 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:30:26 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:27.944147"], ["dob", "2012-08-08 13:30:27.943239"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:27.944147"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:30:27 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.0ms) Rendered people/edit.html.haml within layouts/application (7.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 09:30:27 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"09", "dob(5i)"=>"30", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-08 09:30:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-08 13:30:27.977714"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:27 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.4ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:28.016884"], ["dob", "1984-08-08 13:30:10.453186"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:28.016884"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:30:28 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (10.8ms) Rendered people/edit.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 09:30:28 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"30", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.2ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-08 13:30:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-08 13:30:28.045245"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.5ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:30:28 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.8ms) Rendered people/edit.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:30:28 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.5ms) Rendered people/new.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 09:30:28 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"30", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:28.093481"], ["dob", "2014-08-08 13:30:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 13:30:28.093481"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:28 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.4ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:30:28 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.6ms) Rendered people/new.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 09:30:28 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"30", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:28.139327"], ["dob", "2014-08-08 13:30:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 13:30:28.139327"]]  (1.2ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 5ms (ActiveRecord: 1.8ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:30:28 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.5ms) Rendered people/new.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (10.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (13.8ms) Rendered people/index.html.haml within layouts/application (42.1ms) Rendered application/_flash_messages.html.haml (10.1ms) Completed 200 OK in 78ms (Views: 74.1ms | ActiveRecord: 0.6ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.132175"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.132175"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.148127"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.148127"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.150698"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.150698"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.153080"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.153080"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.155525"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.155525"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.158667"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.158667"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.161768"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.161768"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.164980"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.164980"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.167511"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.167511"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.170099"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.170099"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.172566"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.172566"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.175539"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.175539"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.177960"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.177960"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.181280"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.181280"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.183823"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.183823"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.187480"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.187480"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.190811"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.190811"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.194144"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.194144"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.196647"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.196647"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.200101"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.200101"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.203019"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.203019"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.205725"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.205725"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.208297"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.208297"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.211054"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.211054"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.213530"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.213530"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.216075"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.216075"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.218630"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.218630"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.221138"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.221138"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.223702"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.223702"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.226403"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.226403"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.229807"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.229807"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (13.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.7ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-08 09:30:39 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 75ms (Views: 73.1ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-08 09:30:39 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (13.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.5ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:39.397525"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:39.397525"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.7ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (1.0ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.9ms) Rendered people/index.html.haml within layouts/application (13.3ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 20ms (Views: 16.3ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-08 09:30:42 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:30:42 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.5ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.607756"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.607756"]]  (11.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.622273"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.622273"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.625202"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.625202"]]  (6.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.633841"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.633841"]]  (8.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.645085"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.645085"]]  (6.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.653318"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.653318"]]  (6.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.662022"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.662022"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.667719"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.667719"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.670653"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.670653"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.673723"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.673723"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.676590"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.676590"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.680119"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.680119"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.683239"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.683239"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.686062"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.686062"]]  (7.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.695052"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.695052"]]  (21.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.718334"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.718334"]]  (9.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.730059"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.730059"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.735609"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.735609"]]  (8.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.745941"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.745941"]]  (6.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.754421"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.754421"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.758346"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.758346"]]  (8.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.768923"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.768923"]]  (9.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.781320"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.781320"]]  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.787340"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.787340"]]  (8.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.797997"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.797997"]]  (9.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.810016"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.810016"]]  (19.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.831420"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.831420"]]  (21.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.854611"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.854611"]]  (9.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.866750"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.866750"]]  (10.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.879263"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.879263"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.882722"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.882722"]]  (3.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (17.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.9ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.983842"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.983842"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.986644"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.986644"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.989678"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.989678"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.992459"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.992459"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.995315"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.995315"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:42.997737"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:42.997737"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.000225"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.000225"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.002965"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.002965"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.006462"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.006462"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.009362"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.009362"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.012753"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.012753"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.015417"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.015417"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.018646"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.018646"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.021824"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.021824"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.025084"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.025084"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.028562"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.028562"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.031316"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.031316"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.034010"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.034010"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.036428"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.036428"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.039252"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.039252"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.042055"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.042055"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.044727"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.044727"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.047127"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.047127"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.049783"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.049783"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.052585"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.052585"]]  (7.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.061836"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.061836"]]  (12.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.076440"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.076440"]]  (7.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.085321"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.085321"]]  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.090725"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.090725"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.096352"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.096352"]]  (5.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.104139"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.104139"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-08 09:30:43 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (10.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.6ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.625715"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.625715"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.628902"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.628902"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.631467"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.631467"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.634473"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.634473"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.637394"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.637394"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.640269"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.640269"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.645307"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.645307"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.648454"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.648454"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.651454"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.651454"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.654269"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.654269"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.658094"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.658094"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.661303"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.661303"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.664816"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.664816"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.667388"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.667388"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.670620"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.670620"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.673573"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.673573"]]  (0.9ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.676824"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.676824"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.680211"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.680211"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.682789"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.682789"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.685356"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.685356"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.688063"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.688063"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.690885"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.690885"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.693530"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.693530"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.695987"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.695987"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.698635"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.698635"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.701251"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.701251"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.704629"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.704629"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.707582"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.707582"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.710183"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.710183"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.712803"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.712803"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:43.715554"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:43.715554"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (11.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-08 09:30:43 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (13.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.6ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.445857"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.445857"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.448454"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.448454"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.451177"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.451177"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.453969"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.453969"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.456433"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.456433"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.458884"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.458884"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.461719"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.461719"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.464199"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.464199"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.466772"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.466772"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.469210"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.469210"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.472615"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.472615"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.475910"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.475910"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.478807"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.478807"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.481093"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.481093"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.483639"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.483639"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.486296"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.486296"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.488782"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.488782"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.491731"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.491731"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.494382"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.494382"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.496938"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.496938"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.499688"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.499688"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.502584"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.502584"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.506304"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.506304"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.509188"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.509188"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.511855"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.511855"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.514550"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.514550"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.518000"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.518000"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.521461"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.521461"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.523991"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.523991"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.526764"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.526764"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:44.530089"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:44.530089"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (12.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.9ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-08 09:30:44 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.4ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (22.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 26ms (Views: 23.9ms | ActiveRecord: 1.2ms)  (2.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.8ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.362498"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.362498"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.365285"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.365285"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.367967"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.367967"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.370478"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.370478"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.373238"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.373238"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.375841"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.375841"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.378456"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.378456"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.380902"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.380902"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.383413"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.383413"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.386392"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.386392"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.389639"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.389639"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.392661"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.392661"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.395705"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.395705"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.398266"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.398266"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.400811"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.400811"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.403598"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.403598"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.406188"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.406188"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.409692"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.409692"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.413113"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.413113"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.416671"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.416671"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.420303"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.420303"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.422745"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.422745"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.425321"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.425321"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.434979"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.434979"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.439276"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.439276"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.442082"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.442082"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.444829"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.444829"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.449244"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.449244"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.453697"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.453697"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.456308"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.456308"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:45.459358"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:45.459358"]]  (1.0ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-08 09:30:45 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (10.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 11.8ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-08 09:30:46 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.5ms) Rendered people/index.html.haml within layouts/application (12.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.0ms | ActiveRecord: 0.7ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-08 09:30:46 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.7ms) Rendered people/index.html.haml within layouts/application (14.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.8ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-08 09:30:47 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.5ms) Rendered people/index.html.haml within layouts/application (12.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.7ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.8ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:48 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:48 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (5.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.2ms | ActiveRecord: 0.3ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-08 09:30:48 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.2ms)  (1.9ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:48 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.583072"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.583072"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.586147"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.586147"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.589698"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.589698"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.593002"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.593002"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.595957"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.595957"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.598849"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.598849"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.602594"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.602594"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.605472"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.605472"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.608441"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.608441"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.611502"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_31@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.611502"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.614967"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.614967"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.618788"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.618788"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.621437"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.621437"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.625216"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.625216"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.627865"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.627865"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.631208"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.631208"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.634497"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.634497"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.637909"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.637909"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.640856"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.640856"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.643663"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.643663"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.646861"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.646861"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.649733"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.649733"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.652388"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.652388"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.655094"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.655094"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.658863"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_31@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.658863"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.661650"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.661650"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.664543"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.664543"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.667385"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.667385"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.670087"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.670087"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.673074"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.673074"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.676139"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.676139"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.678969"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.678969"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.682121"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.682121"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.685342"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.685342"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.688376"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.688376"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.691549"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.691549"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.694588"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.694588"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.697591"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.697591"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.700491"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.700491"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.703693"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.703693"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.707328"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.707328"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.710188"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.710188"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.713088"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.713088"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.716880"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.716880"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.719770"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.719770"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.722669"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.722669"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.726338"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.726338"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.729335"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.729335"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.732262"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.732262"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:48.735545"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:48.735545"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:48 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (14.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 24ms (Views: 22.3ms | ActiveRecord: 0.7ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-08-08 09:30:48 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (19.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 1.1ms)  (2.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:49.977809"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_188@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:49.977809"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:49.980711"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_189@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:49.980711"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:49.983976"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_190@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:49.983976"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:49.986908"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_191@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:49.986908"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:49.989638"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:49.989638"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:49 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.6ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-08 09:30:50 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (5.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:50.033699"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:50.033699"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:50 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (5.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:30:50 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (17.3ms) Rendered people/edit.html.haml within layouts/application (19.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.1ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:50.078913"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:50.078913"]]  (1.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:50 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.5ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-08 09:30:51 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction SQL (0.5ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (0.8ms) commit transaction Redirected to http://127.0.0.1:58509/people Completed 302 Found in 5ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:51 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.3ms)  (0.2ms) SELECT COUNT(*) FROM "people"  (3.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:30:52 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.0ms) Rendered people/new.html.haml within layouts/application (9.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 09:30:52 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"30", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (2.2ms) Rendered people/_form.html.haml (6.6ms) Rendered people/new.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 15ms (Views: 8.4ms | ActiveRecord: 0.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:30:52 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.3ms) Rendered people/new.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:52.258260"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:52.258260"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:30:52 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.7ms) Rendered people/edit.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.2ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:30:52 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.8ms) Rendered people/new.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:30:52 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-08 09:30:53 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"09", "dob(5i)"=>"30", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:53.144837"], ["dob", "2012-08-08 09:30:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:53.144837"]]  (0.8ms) commit transaction Redirected to http://127.0.0.1:58509/people Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:53 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 09:30:53 -0400  (1.4ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.3ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:54.263213"], ["dob", "2012-08-08 13:30:54.262146"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:54.263213"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:30:54 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (19.6ms) Rendered people/edit.html.haml within layouts/application (20.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 24ms (Views: 22.1ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 09:30:54 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"09", "dob(5i)"=>"30", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-08 09:30:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-08 13:30:54.316552"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 1.9ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:54 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.3ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:30:54 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.1ms) Rendered people/new.html.haml within layouts/application (7.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 09:30:54 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"30", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:54.372039"], ["dob", "2014-08-08 13:30:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 13:30:54.372039"]]  (1.2ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 09:30:54 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.3ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.5ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:54.397325"], ["dob", "1984-08-08 13:30:36.046304"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 13:30:54.397325"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:30:54 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.3ms) Rendered people/edit.html.haml within layouts/application (8.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 09:30:54 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"30", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-08 13:30:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-08 13:30:54.422992"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 09:30:54 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (9.7ms) Rendered people/edit.html.haml within layouts/application (10.1ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.1ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:30:54 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.4ms) Rendered people/new.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 09:30:54 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"13", "dob(5i)"=>"30", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 13:30:54.477342"], ["dob", "2014-08-08 13:30:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 13:30:54.477342"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 3ms (ActiveRecord: 1.2ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-08 09:30:54 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.6ms) Rendered people/new.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:34:37 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (29.1ms) Rendered people/new.html.haml within layouts/application (34.3ms) Rendered application/_flash_messages.html.haml (13.3ms) Completed 200 OK in 86ms (Views: 82.4ms | ActiveRecord: 0.3ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:34:37 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"34", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.6ms) Rendered people/_form.html.haml (6.3ms) Rendered people/new.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 8.6ms | ActiveRecord: 0.1ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:34:37.777628"], ["dob", "1984-08-08 14:34:33.896235"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:34:37.777628"]]  (1.5ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:34:37 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.5ms) Rendered people/edit.html.haml within layouts/application (8.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 11.1ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 10:34:37 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"34", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-08 14:34:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-08 14:34:37.810123"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 6ms (ActiveRecord: 1.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:34:37 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.7ms) Rendered people/edit.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:34:37 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.3ms) Rendered people/new.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:34:37 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"34", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:34:37.863421"], ["dob", "2014-08-08 14:34:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 14:34:37.863421"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:34:37 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (9.2ms) Rendered people/new.html.haml within layouts/application (9.6ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 12ms (Views: 12.1ms | ActiveRecord: 0.0ms)  (1.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:34:37 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (18.0ms) Rendered people/new.html.haml within layouts/application (18.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:34:37 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"34", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:34:37.935948"], ["dob", "2014-08-08 14:34:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 14:34:37.935948"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:34:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (2.1ms) Rendered application/_search_form.html.haml (2.0ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (7.3ms) Rendered people/index.html.haml within layouts/application (24.3ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 21934ms (Views: 28.0ms | ActiveRecord: 0.7ms)  (2.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:34:59.890188"], ["dob", "1984-08-08 14:34:33.896235"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:34:59.890188"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:34:59 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.3ms) Rendered people/edit.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.1ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:34:59 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.8ms) Rendered people/new.html.haml within layouts/application (8.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.7ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:34:59.943140"], ["dob", "2012-08-08 14:34:59.941890"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:34:59.943140"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:34:59 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.4ms) Rendered people/edit.html.haml within layouts/application (8.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.9ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 10:34:59 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"10", "dob(5i)"=>"34", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-08 10:34:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-08 14:34:59.984764"]]  (1.5ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 8ms (ActiveRecord: 2.2ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:34:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (8.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 5551ms (Views: 10.1ms | ActiveRecord: 0.5ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (4.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:35:08 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (17.2ms) Rendered people/new.html.haml within layouts/application (17.7ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 22ms (Views: 21.5ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-08 10:35:08 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:35:08 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-08 10:35:09 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"10", "dob(5i)"=>"35", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.4ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:35:09.779327"], ["dob", "2012-08-08 10:35:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:35:09.779327"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:60610/people Completed 302 Found in 6ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:35:09 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (7.4ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 4944ms (Views: 9.0ms | ActiveRecord: 0.7ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (155.1ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (141.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (32.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:35:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (2.4ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (8.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 84268ms (Views: 10.9ms | ActiveRecord: 0.3ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:36:40 -0400 Processing by PeopleController#index as HTML Completed in 3542ms ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:36:51 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (29.1ms) Rendered people/new.html.haml within layouts/application (34.1ms) Rendered application/_flash_messages.html.haml (11.5ms) Completed 200 OK in 72ms (Views: 67.9ms | ActiveRecord: 0.4ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:36:51 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"36", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.0ms) rollback transaction Rendered application/_validation_errors.html.haml (1.8ms) Rendered people/_form.html.haml (8.1ms) Rendered people/new.html.haml within layouts/application (8.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 10.6ms | ActiveRecord: 0.1ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:36:51 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.8ms) Rendered people/new.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 70ms (Views: 69.3ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:36:51 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"36", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:51.437072"], ["dob", "2014-08-08 14:36:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 14:36:51.437072"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 7ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:36:51 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (17.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.4ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:36:51 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.4ms) Rendered people/new.html.haml within layouts/application (6.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:36:51 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"36", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:51.497003"], ["dob", "2014-08-08 14:36:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 14:36:51.497003"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:36:51 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.7ms) Rendered people/new.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:51.526489"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:51.526489"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:36:51 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.1ms) Rendered people/edit.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.2ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 10:36:51 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"36", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-08 14:36:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-08 14:36:51.551601"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.3ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:36:51 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.3ms) Rendered people/edit.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.1ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.7ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:51.582488"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:51.582488"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:36:51 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.1ms) Rendered people/edit.html.haml within layouts/application (6.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:36:51 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.4ms) Rendered people/new.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.7ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:51.626613"], ["dob", "2012-08-08 14:36:51.625578"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:51.626613"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:36:51 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.1ms) Rendered people/edit.html.haml within layouts/application (7.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 10:36:51 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"10", "dob(5i)"=>"36", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-08 10:36:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-08 14:36:51.661456"]]  (1.6ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 2.1ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:36:51 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (5.0ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:36:54 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (14.2ms) Rendered people/new.html.haml within layouts/application (14.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-08 10:36:54 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:36:54 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-08 10:36:55 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"10", "dob(5i)"=>"36", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.4ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:55.277048"], ["dob", "2012-08-08 10:36:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:55.277048"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:60737/people Completed 302 Found in 6ms (ActiveRecord: 1.7ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:36:55 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 7.8ms | ActiveRecord: 0.6ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:36:56 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.307945"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.307945"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.310652"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.310652"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.313208"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.313208"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.315922"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.315922"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.318588"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.318588"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.321324"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.321324"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.324047"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.324047"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.327865"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.327865"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.331212"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.331212"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.333811"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.333811"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.336690"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.336690"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.339718"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.339718"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.342331"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.342331"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.344778"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.344778"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.347299"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.347299"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.350302"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.350302"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.352752"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.352752"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.355927"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.355927"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.360369"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.360369"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.364040"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.364040"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.367436"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.367436"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.370227"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.370227"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.373079"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.373079"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.375741"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.375741"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.378366"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.378366"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.381744"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.381744"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.384824"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.384824"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.387334"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.387334"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.390085"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.390085"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.392861"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.392861"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:56.395961"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:56.395961"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-08 10:36:56 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (14.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.9ms) Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-08 10:36:56 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (12.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.8ms | ActiveRecord: 0.7ms) Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-08 10:36:57 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.4ms) Rendered people/index.html.haml within layouts/application (76.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 79ms (Views: 77.6ms | ActiveRecord: 0.7ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-08-08 10:36:58 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (12.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 13.2ms | ActiveRecord: 0.9ms) Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.023056"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.023056"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.026414"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.026414"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.029294"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.029294"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.032143"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.032143"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.035497"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.035497"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.038092"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.038092"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.040534"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.040534"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.043979"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.043979"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.046943"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.046943"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.050917"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.050917"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.053763"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.053763"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.056359"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.056359"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.059562"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.059562"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.062803"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.062803"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.065287"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.065287"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.067653"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.067653"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.070429"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.070429"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.073187"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.073187"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.076272"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.076272"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.079201"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.079201"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.082164"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.082164"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.085640"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.085640"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.088314"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.088314"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.091402"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.091402"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.095040"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.095040"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.097586"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.097586"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.100246"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.100246"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.103518"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.103518"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.106284"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.106284"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.109934"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.109934"]]  (1.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:36:59.113540"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:36:59.113540"]]  (1.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:36:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (12.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-08 10:36:59 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.3ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (18.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 22ms (Views: 19.0ms | ActiveRecord: 1.2ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.113050"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.113050"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.116061"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.116061"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.118500"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.118500"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.121710"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.121710"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.124887"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.124887"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.127404"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.127404"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.130010"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.130010"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.132480"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.132480"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.134995"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.134995"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.137566"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.137566"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.140042"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.140042"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.142972"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.142972"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.145676"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.145676"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.148772"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.148772"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.152240"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.152240"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.155190"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.155190"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.158311"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.158311"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.160862"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.160862"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.163319"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.163319"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.165798"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.165798"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.168438"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.168438"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.171222"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.171222"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.173939"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.173939"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.176621"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.176621"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.179632"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.179632"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.182092"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.182092"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.184625"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.184625"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.187130"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.187130"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.190152"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.190152"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.193345"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.193345"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.196610"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.196610"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:00 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (12.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.9ms) Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-08 10:37:00 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.9ms) Rendered people/index.html.haml within layouts/application (15.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.7ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.992095"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.992095"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.995084"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.995084"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:00.997847"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:00.997847"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.001007"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.001007"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.003676"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.003676"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.006627"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.006627"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.010198"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.010198"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.012863"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.012863"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.015670"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.015670"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.018525"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.018525"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.021230"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.021230"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.024567"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.024567"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.027462"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.027462"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.030248"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.030248"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.033778"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.033778"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.037393"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.037393"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.040316"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.040316"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.043089"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.043089"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.045803"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.045803"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.048818"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.048818"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.052803"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.052803"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.056244"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.056244"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.059445"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.059445"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.062270"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.062270"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.064977"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.064977"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.067682"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.067682"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.070302"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.070302"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.073090"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.073090"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.076501"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.076501"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.079657"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.079657"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.083373"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.083373"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:01 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (12.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.7ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.117433"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.117433"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.120780"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.120780"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.124238"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.124238"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.127217"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.127217"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.130155"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.130155"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.132927"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.132927"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.135564"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.135564"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.138038"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.138038"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.140900"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.140900"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.143622"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.143622"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.146668"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.146668"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.150095"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.150095"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.153440"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.153440"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.156101"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.156101"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.158777"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.158777"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.161308"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.161308"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.163836"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.163836"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.166746"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.166746"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.170157"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.170157"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.173221"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.173221"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.175873"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.175873"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.178614"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.178614"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.181159"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.181159"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.183882"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.183882"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.186504"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.186504"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.189032"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.189032"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.192013"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.192013"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.196086"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.196086"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.200491"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.200491"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.203321"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.203321"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.206340"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.206340"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:01 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (14.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 15.5ms | ActiveRecord: 1.0ms) Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-08 10:37:01 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (11.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.7ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (6.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.6ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.748363"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.748363"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.752230"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.752230"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.755656"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.755656"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.759124"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.759124"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.761967"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.761967"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.765580"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.765580"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.769695"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.769695"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.773068"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.773068"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.776954"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.776954"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.780121"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.780121"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.782950"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.782950"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.785824"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.785824"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.789361"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.789361"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.792912"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.792912"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.796663"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.796663"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.799792"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.799792"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.803125"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.803125"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.806170"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.806170"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.809386"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.809386"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.813121"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.813121"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.816473"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.816473"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.819709"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.819709"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.822735"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.822735"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.826336"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.826336"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.829507"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.829507"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.832398"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.832398"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.835048"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.835048"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.837560"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.837560"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.840222"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.840222"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.843047"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.843047"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.846292"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.846292"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:01 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-08 10:37:01 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (12.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.7ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-08 10:37:01 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (15.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.6ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:01.940003"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_190@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:01.940003"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:01 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.6ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:02 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:02.283824"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_191@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:02.283824"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:02 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.6ms)  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-08 10:37:03 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (5.0ms) commit transaction Redirected to http://127.0.0.1:60737/people Completed 302 Found in 8ms (ActiveRecord: 5.6ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:03 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.2ms)  (0.2ms) SELECT COUNT(*) FROM "people"  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.119646"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_192@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.119646"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:04 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:37:04 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.3ms) Rendered people/edit.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.3ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:04 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (1.1ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:04 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:04 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.3ms) Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-08 10:37:04 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.0ms | ActiveRecord: 0.2ms)  (3.9ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.646049"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_193@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.646049"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.648833"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_194@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.648833"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.651530"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_195@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.651530"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.654159"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoe_196@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.654159"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.657362"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.657362"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:04 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.5ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-08 10:37:04 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.2ms | ActiveRecord: 0.5ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.696759"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.696759"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.699694"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.699694"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.702745"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.702745"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.705775"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.705775"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.708724"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_20@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.708724"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.711466"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.711466"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.714462"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.714462"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.717159"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.717159"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.720196"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.720196"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.723286"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.723286"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.726228"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.726228"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.729429"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.729429"]]  (1.1ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.733226"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.733226"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.737584"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.737584"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.741118"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.741118"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.744065"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.744065"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.747082"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.747082"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.750282"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.750282"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.753086"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.753086"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.755810"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.755810"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.758819"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.758819"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.761556"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.761556"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.764226"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.764226"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.766982"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.766982"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.770348"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.770348"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.773534"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.773534"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.776586"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.776586"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.779242"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.779242"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.782789"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.782789"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.785812"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.785812"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.788837"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.788837"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.791999"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.791999"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.795668"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.795668"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.799860"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.799860"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.803865"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.803865"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.808146"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.808146"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.812727"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.812727"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.816556"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.816556"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.819697"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.819697"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.823239"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.823239"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.826762"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.826762"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.830904"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.830904"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.833940"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_23@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.833940"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.837616"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.837616"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.840831"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.840831"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.843919"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.843919"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.847686"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.847686"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.850892"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.850892"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.854227"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.854227"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:04.857445"], ["dob", "1984-08-08 14:36:48.171615"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:04.857445"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:04 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (16.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 17.2ms | ActiveRecord: 1.1ms) Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-08-08 10:37:05 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.7ms) Rendered people/index.html.haml within layouts/application (15.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.9ms) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-08-08 14:37:28.909648"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:28.909648"]]  (1.3ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-08 10:37:28 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (21.3ms) Rendered application/_flash_messages.html.haml (10.8ms) Completed 200 OK in 64ms (Views: 62.4ms | ActiveRecord: 0.4ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-08-08 14:37:29.004509"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.004509"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-08-08 14:37:29.007289"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.007289"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-08-08 14:37:29.010304"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.010304"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-08-08 14:37:29.013724"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.013724"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-08-08 14:37:29.016278"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.016278"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-08-08 14:37:29.018760"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.018760"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-08-08 14:37:29.021433"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.021433"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-08-08 14:37:29.023894"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.023894"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-08-08 14:37:29.026821"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.026821"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-08-08 14:37:29.029702"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.029702"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-08-08 14:37:29.033199"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.033199"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-08-08 14:37:29.035911"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.035911"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-08-08 14:37:29.038426"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.038426"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-08-08 14:37:29.041026"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.041026"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-08-08 14:37:29.046573"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.046573"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-08-08 14:37:29.051080"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.051080"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-08-08 14:37:29.055292"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.055292"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-08-08 14:37:29.059227"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.059227"]]  (1.2ms) commit transaction  (0.3ms) begin transaction SQL (0.6ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-08-08 14:37:29.063305"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.063305"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-08-08 14:37:29.067095"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.067095"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-08-08 14:37:29.070641"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.070641"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-08-08 14:37:29.074335"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.074335"]]  (1.5ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-08-08 14:37:29.078756"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.078756"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-08-08 14:37:29.082423"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.082423"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-08-08 14:37:29.085447"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.085447"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-08-08 14:37:29.088607"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.088607"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-08-08 14:37:29.091390"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.091390"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-08-08 14:37:29.094071"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.094071"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-08-08 14:37:29.096950"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.096950"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-08-08 14:37:29.099813"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.099813"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-08-08 14:37:29.102590"], ["exp_date", "2016-08-08"], ["secret_code", "592742541d837ad9"], ["updated_at", "2014-08-08 14:37:29.102590"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-08 10:37:29 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.3ms) Rendered credit_card_infos/index.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.6ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-08-08 10:37:29 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (4.4ms) Rendered credit_card_infos/index.html.haml within layouts/application (8.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.6ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-08-08 10:37:29 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.4ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.6ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:34 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.6ms) Rendered application/_search_form.html.haml (2.1ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (16.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 37ms (Views: 32.6ms | ActiveRecord: 0.6ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-08 10:37:36 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:36 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-08 10:37:37 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:37 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (3.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.391525"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.391525"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.395366"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.395366"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.398540"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_87@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.398540"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.401551"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.401551"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.404467"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.404467"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.407530"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.407530"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.410228"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.410228"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.412862"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.412862"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.415680"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.415680"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.418782"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.418782"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.421649"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.421649"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.424560"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.424560"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.427797"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_54@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.427797"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.431630"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.431630"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.434847"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.434847"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.438280"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.438280"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.441090"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.441090"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.444045"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.444045"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.447031"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.447031"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.450320"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_31@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.450320"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.453285"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.453285"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.456129"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.456129"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.458921"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.458921"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.462404"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_26@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.462404"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.465075"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.465075"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.467950"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.467950"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.471016"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.471016"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.473968"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.473968"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.476726"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.476726"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.479852"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_93@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.479852"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.482867"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.482867"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.486241"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.486241"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.489741"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.489741"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.492905"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.492905"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.496549"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.496549"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.499479"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.499479"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.502825"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_66@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.502825"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.505792"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.505792"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.509107"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.509107"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.512293"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.512293"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.515656"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.515656"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.518914"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.518914"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.522128"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.522128"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.525222"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.525222"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.528658"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.528658"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.531911"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_20@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.531911"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.534899"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_81@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.534899"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.538059"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.538059"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.541266"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.541266"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:37.545255"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:37.545255"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (5.0ms) Rendered people/index.html.haml within layouts/application (16.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:37 -0400  (1.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:39.793485"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_1@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:39.793485"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:39.796669"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_2@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:39.796669"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:39.799653"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_3@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:39.799653"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:39.802417"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_4@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:39.802417"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:39.805068"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:39.805068"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-08 10:37:39 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.6ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:39.846160"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_5@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:39.846160"]]  (1.4ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:37:39 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (16.3ms) Rendered people/edit.html.haml within layouts/application (18.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:39.890077"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_6@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:39.890077"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.5ms) Rendered people/index.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:39 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-08 10:37:40 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.5ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.6ms) commit transaction Redirected to http://127.0.0.1:61299/people Completed 302 Found in 6ms (ActiveRecord: 2.4ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:40 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.2ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:40 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:41.728899"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_7@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:41.728899"]]  (0.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:41 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.034588"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.034588"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.037168"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.037168"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.040007"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.040007"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.043393"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.043393"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.046740"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.046740"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.049141"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.049141"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.051451"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.051451"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.053968"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.053968"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.056774"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.056774"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.060243"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.060243"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.063682"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.063682"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.066133"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.066133"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.068832"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.068832"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.071746"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.071746"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.074977"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.074977"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.078231"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.078231"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.081678"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.081678"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.084566"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.084566"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.087772"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.087772"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.090764"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.090764"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.093334"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.093334"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.096058"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.096058"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.099291"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.099291"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.102255"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.102255"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.104975"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.104975"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.107461"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.107461"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.110452"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.110452"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.113124"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.113124"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.115750"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.115750"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.118287"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.118287"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.120976"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.120976"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-08 10:37:42 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (11.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-08 10:37:42 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (14.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.5ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.210702"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.210702"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.213620"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.213620"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.216350"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.216350"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.218913"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.218913"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.221586"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.221586"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.224029"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.224029"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.227915"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.227915"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.230988"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.230988"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.233762"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.233762"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.236443"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.236443"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.238975"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.238975"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.241916"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.241916"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.244376"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.244376"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.247053"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.247053"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.250821"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.250821"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.253634"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.253634"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.256368"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.256368"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.259084"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.259084"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.261773"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.261773"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.264397"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.264397"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.266916"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.266916"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.269977"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.269977"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.272685"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.272685"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.275819"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.275819"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.278549"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.278549"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.281142"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.281142"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.284126"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.284126"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.286726"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.286726"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.289289"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.289289"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.291971"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.291971"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.294912"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.294912"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (11.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:42 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-08 10:37:42 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (9.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:42 -0400  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.8ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (2.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.862319"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.862319"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.865187"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.865187"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.868576"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.868576"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.871532"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.871532"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.875212"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.875212"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.878131"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.878131"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.880866"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.880866"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.887644"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.887644"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.890698"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.890698"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.894239"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.894239"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.897490"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.897490"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.900146"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.900146"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.902699"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.902699"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.905303"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.905303"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.908380"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.908380"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.911015"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.911015"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.913806"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.913806"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.917560"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.917560"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.920355"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.920355"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.922841"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.922841"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.925481"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.925481"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.928116"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.928116"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.931568"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.931568"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.935429"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.935429"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.938163"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.938163"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.941293"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.941293"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.944845"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.944845"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.948384"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.948384"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.951249"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.951249"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.954365"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.954365"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:42.957275"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:42.957275"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (14.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:43 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-08 10:37:43 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.0ms) Rendered people/index.html.haml within layouts/application (17.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:43 -0400  (5.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (3.3ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.4ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.710243"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.710243"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.713252"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.713252"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.716896"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.716896"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.719445"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.719445"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.721995"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.721995"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.724507"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.724507"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.727271"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.727271"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.729973"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.729973"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.732887"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.732887"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (1.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.735540"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.735540"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.739825"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.739825"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.742553"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.742553"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.745512"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.745512"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.748756"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.748756"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.751621"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.751621"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.754495"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.754495"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.757557"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.757557"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.760392"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.760392"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.763085"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.763085"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.766552"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.766552"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.769222"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.769222"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.771898"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.771898"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.776901"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.776901"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.780182"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.780182"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.782936"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.782936"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.785731"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.785731"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.788479"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.788479"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.791058"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.791058"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.793434"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.793434"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.796182"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.796182"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.798957"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.798957"]]  (1.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (13.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.8ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.833759"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.833759"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.836372"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.836372"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.839020"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.839020"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.841784"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.841784"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.844355"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.844355"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.847083"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.847083"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.849784"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.849784"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.852401"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.852401"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.854958"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.854958"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.857466"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.857466"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.860422"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.860422"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.863630"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.863630"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.867118"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.867118"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.869902"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.869902"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.872757"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.872757"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.876059"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.876059"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.878795"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.878795"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.881927"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.881927"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.884685"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.884685"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.887210"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.887210"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.889681"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.889681"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.892434"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.892434"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.895091"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.895091"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.897781"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.897781"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.900477"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.900477"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.903058"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.903058"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.905974"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.905974"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.909461"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.909461"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.912975"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.912975"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.915767"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.915767"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:43.918858"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:43.918858"]]  (1.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (16.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:43 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-08 10:37:44 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (24.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 29ms (Views: 25.7ms | ActiveRecord: 1.1ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:44 -0400  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.861720"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.861720"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.864394"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.864394"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.866893"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.866893"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.869665"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.869665"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.872524"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.872524"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.875224"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.875224"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.877802"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.877802"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.881321"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.881321"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.884748"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.884748"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.888221"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.888221"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.891619"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.891619"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.895608"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.895608"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.898414"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.898414"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.901367"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.901367"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.903910"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.903910"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.907406"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.907406"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.911126"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.911126"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.914429"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.914429"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.917268"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.917268"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.919905"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.919905"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.922296"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.922296"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.924913"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.924913"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.927569"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.927569"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.930247"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.930247"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.932823"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.932823"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.935305"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.935305"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.937795"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.937795"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.940292"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.940292"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.943590"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.943590"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.947222"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.947222"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:44.950014"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:44.950014"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-08 10:37:44 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (2.7ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (14.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:45 -0400 Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-08 10:37:45 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (5.0ms) Rendered people/index.html.haml within layouts/application (13.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:45 -0400 Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-08 10:37:46 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.4ms) Rendered people/index.html.haml within layouts/application (12.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:46 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-08 10:37:46 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.0ms) Rendered people/index.html.haml within layouts/application (12.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:47 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:37:47 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.6ms) Rendered people/new.html.haml within layouts/application (9.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:37:47 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"37", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (2.2ms) Rendered people/_form.html.haml (9.8ms) Rendered people/new.html.haml within layouts/application (10.1ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 19ms (Views: 12.0ms | ActiveRecord: 0.1ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (2.7ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.3ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:37:47 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.2ms) Rendered people/new.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:47.822476"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:47.822476"]]  (1.1ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:37:47 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.7ms) Rendered people/edit.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:37:47 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.3ms) Rendered people/new.html.haml within layouts/application (8.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 10.2ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:47 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-08 10:37:48 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"10", "dob(5i)"=>"37", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:48.677536"], ["dob", "2012-08-08 10:37:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:48.677536"]]  (1.0ms) commit transaction Redirected to http://127.0.0.1:61299/people Completed 302 Found in 5ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:48 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (6.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:37:48 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:49.543613"], ["dob", "2012-08-08 14:37:49.542361"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:49.543613"]]  (2.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:37:49 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.2ms) Rendered people/edit.html.haml within layouts/application (7.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 10:37:49 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"10", "dob(5i)"=>"37", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-08 10:37:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-08 14:37:49.583671"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:49 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.3ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:49.619370"], ["dob", "1984-08-08 14:37:25.862831"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:37:49.619370"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:37:49 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.4ms) Rendered people/edit.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 10:37:49 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"37", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-08 14:37:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-08 14:37:49.645530"]]  (1.1ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.8ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:37:49 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.5ms) Rendered people/edit.html.haml within layouts/application (8.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:37:49 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.6ms) Rendered people/new.html.haml within layouts/application (6.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:37:49 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"37", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:49.697087"], ["dob", "2014-08-08 14:37:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 14:37:49.697087"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.2ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:37:49 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.0ms) Rendered people/new.html.haml within layouts/application (8.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:37:49 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.8ms) Rendered people/new.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:37:49 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"37", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:37:49.749224"], ["dob", "2014-08-08 14:37:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 14:37:49.749224"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:37:49 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.4ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-08-08 14:39:53.643746"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.643746"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-08 10:39:53 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (10.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (21.3ms) Rendered application/_flash_messages.html.haml (11.0ms) Completed 200 OK in 62ms (Views: 60.6ms | ActiveRecord: 0.4ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-08-08 14:39:53.739867"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.739867"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-08-08 14:39:53.742756"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.742756"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-08-08 14:39:53.746538"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.746538"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-08-08 14:39:53.749552"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.749552"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-08-08 14:39:53.752225"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.752225"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-08-08 14:39:53.754754"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.754754"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-08-08 14:39:53.757484"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.757484"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-08-08 14:39:53.760022"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.760022"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-08-08 14:39:53.763441"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.763441"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-08-08 14:39:53.766619"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.766619"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-08-08 14:39:53.769817"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.769817"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-08-08 14:39:53.772390"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.772390"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-08-08 14:39:53.775035"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.775035"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-08-08 14:39:53.777466"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.777466"]]  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-08-08 14:39:53.784239"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.784239"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-08-08 14:39:53.788169"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.788169"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-08-08 14:39:53.792245"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.792245"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-08-08 14:39:53.795546"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.795546"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-08-08 14:39:53.798808"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.798808"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-08-08 14:39:53.802060"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.802060"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-08-08 14:39:53.805627"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.805627"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-08-08 14:39:53.809074"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.809074"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-08-08 14:39:53.812384"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.812384"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-08-08 14:39:53.815212"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.815212"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-08-08 14:39:53.817971"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.817971"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-08-08 14:39:53.820575"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.820575"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-08-08 14:39:53.823893"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.823893"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-08-08 14:39:53.827257"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.827257"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-08-08 14:39:53.830195"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.830195"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-08-08 14:39:53.832915"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.832915"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-08-08 14:39:53.835669"], ["exp_date", "2016-08-08"], ["secret_code", "94e7d96fe81711f5"], ["updated_at", "2014-08-08 14:39:53.835669"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-08 10:39:53 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered credit_card_infos/index.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-08-08 10:39:53 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.0ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-08-08 10:39:53 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:39:58 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.8ms) Rendered application/_search_form.html.haml (2.0ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (16.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 38ms (Views: 33.9ms | ActiveRecord: 0.6ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:01 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 13ms (Views: 10.8ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-08 10:40:01 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:01 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-08 10:40:02 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:02 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.5ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:02 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:02 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.395139"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.395139"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.400334"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_16@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.400334"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.403871"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.403871"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.406982"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.406982"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.409976"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.409976"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.412697"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.412697"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.415679"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.415679"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.418659"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.418659"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.421734"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.421734"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.424615"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.424615"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.427577"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.427577"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.430503"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.430503"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.433317"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.433317"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.436268"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.436268"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.439209"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.439209"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.442736"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_88@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.442736"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.446112"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.446112"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.449030"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.449030"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.452980"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.452980"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.456156"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.456156"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.458891"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.458891"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.461700"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.461700"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.464937"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.464937"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.467964"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.467964"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.471671"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.471671"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.474725"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.474725"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.477820"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_74@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.477820"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.480856"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.480856"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.484092"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.484092"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.487299"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_96@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.487299"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.490580"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.490580"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.493982"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.493982"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.497195"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_62@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.497195"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.500256"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.500256"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.503981"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.503981"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.507207"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.507207"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.511331"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.511331"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.515140"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.515140"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.518331"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.518331"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.521562"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.521562"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.524637"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.524637"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.527785"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_50@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.527785"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.531787"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_90@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.531787"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.535038"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.535038"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.538286"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.538286"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.541458"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.541458"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.544623"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_27@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.544623"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.547813"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.547813"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.551403"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.551403"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:02.554893"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoesemail_41@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:02.554893"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:02 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (18.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:02 -0400  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.790212"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_1@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.790212"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.793276"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_2@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.793276"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.797464"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_3@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.797464"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.800417"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_4@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.800417"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.803146"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.803146"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:04 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (5.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-08 10:40:04 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.4ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:04 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.857984"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_5@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.857984"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.860681"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_6@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.860681"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.863357"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_7@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.863357"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.866689"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_8@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.866689"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.869677"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_9@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.869677"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.872746"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.872746"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.875452"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.875452"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.878975"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.878975"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.881927"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.881927"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.884699"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.884699"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.887449"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.887449"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.890210"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.890210"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.893002"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.893002"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.895655"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.895655"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.898238"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.898238"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.901043"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.901043"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.903558"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.903558"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.906114"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.906114"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.909209"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.909209"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.912477"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.912477"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.915582"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.915582"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.918204"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.918204"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.920750"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.920750"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.923524"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.923524"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.926070"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.926070"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.928706"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.928706"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.932114"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.932114"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.934921"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.934921"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.937808"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.937808"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.941141"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.941141"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:04.945103"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:04.945103"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:04 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-08 10:40:04 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-08 10:40:04 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (14.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.7ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.029378"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.029378"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:05 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:05 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.329142"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.329142"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.332760"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.332760"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.335474"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.335474"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.338657"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.338657"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.342654"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.342654"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.345917"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.345917"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.349288"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.349288"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.352507"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.352507"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.355713"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.355713"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.358851"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.358851"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.361485"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.361485"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.364594"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.364594"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.368266"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.368266"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.371230"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.371230"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.373943"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.373943"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.376613"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.376613"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.380213"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.380213"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.383028"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.383028"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.385724"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.385724"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.388245"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.388245"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.391581"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.391581"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.394226"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.394226"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.396714"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.396714"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.399295"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.399295"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.402543"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.402543"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.405357"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.405357"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.407974"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.407974"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.411375"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.411375"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.413881"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.413881"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.417039"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.417039"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.419794"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.419794"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:05 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (13.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:05 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-08 10:40:05 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (10.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:05 -0400  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.916224"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.916224"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.919374"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.919374"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.921905"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.921905"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.924421"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.924421"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.927037"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.927037"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.929725"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.929725"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.932279"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.932279"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.934896"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.934896"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.937672"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.937672"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.940510"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.940510"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.944254"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.944254"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.947373"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.947373"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.950228"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.950228"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.952771"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.952771"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.955387"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.955387"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.958085"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.958085"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.960522"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.960522"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.963611"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.963611"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.966894"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.966894"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.969562"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.969562"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.972833"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.972833"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.975488"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.975488"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.978197"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.978197"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.981184"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.981184"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.984028"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.984028"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.986729"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.986729"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.989732"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.989732"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.992392"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.992392"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.995202"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.995202"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:05.998254"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:05.998254"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.000960"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.000960"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.8ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.030868"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.030868"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.033561"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.033561"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.036214"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.036214"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.039039"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.039039"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.041586"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.041586"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.044072"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.044072"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.046566"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.046566"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.049206"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.049206"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.051646"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.051646"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.054187"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.054187"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.056842"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.056842"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.059718"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.059718"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.063387"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.063387"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.067191"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.067191"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.071198"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.071198"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.074562"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.074562"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.077366"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.077366"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.118801"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.118801"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.123733"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.123733"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.129992"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.129992"]]  (0.9ms) commit transaction  (0.3ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.133114"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.133114"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.136750"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.136750"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.139732"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.139732"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.142470"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.142470"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.145203"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.145203"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.147821"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.147821"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.150459"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.150459"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.152964"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.152964"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.155733"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.155733"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.158217"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.158217"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.160902"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.160902"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (11.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:06 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-08 10:40:06 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (15.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:06 -0400  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.918405"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.918405"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.921439"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.921439"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.924245"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.924245"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.927156"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.927156"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.929910"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.929910"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.932968"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.932968"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.935781"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.935781"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.938368"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.938368"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.941936"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.941936"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.945972"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.945972"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.948909"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.948909"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.952345"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.952345"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.955138"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.955138"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.957960"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.957960"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.960479"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.960479"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.964493"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.964493"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.967970"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.967970"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.970552"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.970552"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.973058"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.973058"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.975717"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.975717"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.979229"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.979229"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.982514"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.982514"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.985136"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.985136"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.987928"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.987928"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.990983"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.990983"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.993716"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.993716"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:06.996318"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:06.996318"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.000213"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.000213"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.002942"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.002942"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.005487"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.005487"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.008547"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.008547"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:07 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (13.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:07 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-08 10:40:07 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.1ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (19.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:07 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.901734"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.901734"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.905170"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.905170"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.908627"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.908627"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.911491"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.911491"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.914588"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.914588"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.917319"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.917319"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.919928"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.919928"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.922589"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.922589"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.925351"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.925351"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.928237"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.928237"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.931666"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.931666"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.934665"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.934665"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.937557"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.937557"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.940570"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.940570"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.944104"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.944104"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.947863"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.947863"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.951534"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.951534"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.954777"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.954777"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.957519"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.957519"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.960447"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.960447"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.963490"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.963490"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.966205"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.966205"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.968963"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.968963"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.971611"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.971611"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.974559"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.974559"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.977121"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.977121"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.980365"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.980365"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.983683"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.983683"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.986307"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.986307"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.988961"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.988961"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:07.991908"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:07.991908"]]  (1.3ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-08 10:40:08 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (10.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:08 -0400 Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-08 10:40:08 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.5ms) Rendered people/index.html.haml within layouts/application (11.5ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:08 -0400 Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-08 10:40:09 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.4ms) Rendered people/index.html.haml within layouts/application (15.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:09 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-08 10:40:09 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (4.3ms) Rendered people/index.html.haml within layouts/application (14.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:09 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (3.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:10.952436"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:10.952436"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:10 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.6ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:40:10 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (20.1ms) Rendered people/edit.html.haml within layouts/application (22.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.2ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.6ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:11.006654"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:11.006654"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (8.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:11 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-08 10:40:11 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.5ms) commit transaction Redirected to http://127.0.0.1:62301/people Completed 302 Found in 5ms (ActiveRecord: 2.1ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (0.9ms) Rendered people/index.html.haml within layouts/application (2.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:11 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (1.1ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.5ms) DELETE FROM "people";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:40:12 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.0ms) Rendered people/new.html.haml within layouts/application (8.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:40:12 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"40", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.7ms) Rendered people/_form.html.haml (8.9ms) Rendered people/new.html.haml within layouts/application (9.2ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 17ms (Views: 11.1ms | ActiveRecord: 0.1ms)  (3.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:40:12 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.8ms) Rendered people/new.html.haml within layouts/application (9.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:12.990977"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:12.990977"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:40:12 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.6ms) Rendered people/edit.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.2ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:40:13 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.0ms) Rendered people/new.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:13 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-08 10:40:13 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"10", "dob(5i)"=>"40", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:13.963543"], ["dob", "2012-08-08 10:40:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:13.963543"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:62301/people Completed 302 Found in 5ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (6.5ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:40:13 -0400  (3.8ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:14.826301"], ["dob", "2012-08-08 14:40:14.825151"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:14.826301"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:40:14 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.3ms) Rendered people/edit.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 10:40:14 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"10", "dob(5i)"=>"40", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-08 10:40:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-08 14:40:14.863822"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 1.6ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:14.895649"], ["dob", "1984-08-08 14:39:50.615030"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:40:14.895649"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:40:14 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.8ms) Rendered people/edit.html.haml within layouts/application (9.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 10:40:14 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"39", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-08 14:39:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-08 14:40:14.923065"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 5ms (ActiveRecord: 1.9ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:40:14 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.5ms) Rendered people/edit.html.haml within layouts/application (8.9ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.2ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:40:14 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.1ms) Rendered people/new.html.haml within layouts/application (7.4ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:40:14 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"40", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:14.976794"], ["dob", "2014-08-08 14:40:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 14:40:14.976794"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:40:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.1ms) Rendered people/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.4ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:40:15 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.4ms) Rendered people/new.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:40:15 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"40", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:40:15.022739"], ["dob", "2014-08-08 14:40:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 14:40:15.022739"]]  (1.8ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 5ms (ActiveRecord: 2.2ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:40:15 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.6ms) Rendered people/new.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "dinosaurs";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-08-08 14:48:23.683463"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.683463"]]  (1.1ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-08 10:48:23 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (21.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (32.5ms) Rendered application/_flash_messages.html.haml (9.9ms) Completed 200 OK in 75ms (Views: 73.5ms | ActiveRecord: 0.5ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-08-08 14:48:23.790686"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.790686"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-08-08 14:48:23.793465"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.793465"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-08-08 14:48:23.796182"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.796182"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-08-08 14:48:23.798852"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.798852"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-08-08 14:48:23.801423"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.801423"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-08-08 14:48:23.804180"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.804180"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-08-08 14:48:23.807183"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.807183"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-08-08 14:48:23.809903"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.809903"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-08-08 14:48:23.812455"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.812455"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-08-08 14:48:23.815102"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.815102"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-08-08 14:48:23.817843"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.817843"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-08-08 14:48:23.820653"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.820653"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-08-08 14:48:23.824067"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.824067"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-08-08 14:48:23.827026"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.827026"]]  (9.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-08-08 14:48:23.839077"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.839077"]]  (1.9ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-08-08 14:48:23.843376"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.843376"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-08-08 14:48:23.846609"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.846609"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-08-08 14:48:23.849403"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.849403"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-08-08 14:48:23.852216"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.852216"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-08-08 14:48:23.855304"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.855304"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-08-08 14:48:23.858199"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.858199"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-08-08 14:48:23.861196"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.861196"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-08-08 14:48:23.863961"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.863961"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-08-08 14:48:23.867200"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.867200"]]  (1.4ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-08-08 14:48:23.870935"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.870935"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-08-08 14:48:23.874020"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.874020"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-08-08 14:48:23.876830"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.876830"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-08-08 14:48:23.879346"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.879346"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-08-08 14:48:23.881925"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.881925"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-08-08 14:48:23.884552"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.884552"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-08-08 14:48:23.887209"], ["exp_date", "2016-08-08"], ["secret_code", "f4bf52e665397df6"], ["updated_at", "2014-08-08 14:48:23.887209"]]  (1.3ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-08 10:48:23 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered credit_card_infos/index.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-08-08 10:48:23 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.0ms) Rendered credit_card_infos/index.html.haml within layouts/application (71.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 73ms (Views: 72.2ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-08-08 10:48:23 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.3ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered credit_card_infos/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:28 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.6ms) Rendered application/_search_form.html.haml (2.1ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (16.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 39ms (Views: 34.7ms | ActiveRecord: 0.5ms)  (1.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.703745"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.703745"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.707034"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.707034"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.709736"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.709736"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.712115"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.712115"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.714697"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.714697"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.717265"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.717265"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.719837"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.719837"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.722382"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.722382"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.725400"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.725400"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.736372"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.736372"]]  (1.2ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.741657"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.741657"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.745960"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.745960"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.750068"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.750068"]]  (1.0ms) commit transaction  (0.2ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.758392"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.758392"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.763068"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.763068"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.766639"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.766639"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.770746"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.770746"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.774716"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.774716"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.777845"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.777845"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.780789"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.780789"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.783467"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.783467"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.786012"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.786012"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.788742"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.788742"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.791280"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.791280"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.793936"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.793936"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.797625"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.797625"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.800137"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.800137"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.802936"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.802936"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.806148"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.806148"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.808935"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.808935"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.811482"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.811482"]]  (1.7ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:28 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (11.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-08 10:48:28 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (10.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-08 10:48:28 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (14.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.5ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:28.896309"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:28.896309"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:32 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.5ms) Rendered people/index.html.haml within layouts/application (9.7ms) Rendered application/_flash_messages.html.haml (0.7ms) Completed 200 OK in 16ms (Views: 13.4ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-08 10:48:32 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:32 -0400  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:32 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.534140"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.534140"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.537463"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.537463"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.540361"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.540361"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.543340"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.543340"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.546316"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.546316"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.548957"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.548957"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.551661"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.551661"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.554974"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.554974"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.558633"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.558633"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.561529"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.561529"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.564771"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.564771"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.567562"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.567562"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.570376"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.570376"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.573658"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.573658"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.577199"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.577199"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.580116"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.580116"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.582944"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.582944"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.585886"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.585886"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.588504"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.588504"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.591329"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.591329"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.593912"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.593912"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.597714"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.597714"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.600425"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.600425"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.602983"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.602983"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.605915"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.605915"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.608826"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.608826"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.611896"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.611896"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.614642"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.614642"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.617353"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.617353"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.620156"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.620156"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.623202"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.623202"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:32 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (12.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.6ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.655078"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.655078"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.658723"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.658723"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.661761"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.661761"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.665099"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.665099"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.668703"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.668703"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.671589"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.671589"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.674294"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.674294"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.677696"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.677696"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.680513"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.680513"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.683488"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.683488"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.686600"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.686600"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.690145"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.690145"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.693685"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.693685"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.696635"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.696635"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.699284"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.699284"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.701885"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.701885"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.704566"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.704566"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.707389"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.707389"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.711069"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.711069"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.714583"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.714583"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.718211"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.718211"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.722287"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.722287"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (1.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.725188"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.725188"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.731266"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.731266"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.734640"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.734640"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.737876"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.737876"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.740811"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.740811"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.743528"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.743528"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.746718"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.746718"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.749315"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.749315"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:32.752255"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:32.752255"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:32 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (13.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:32 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-08 10:48:33 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (15.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:33 -0400  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.532857"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.532857"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.535849"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.535849"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.538375"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.538375"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.540857"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.540857"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.543424"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.543424"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.546100"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.546100"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.548526"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.548526"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.550957"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.550957"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.553620"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.553620"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.556562"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.556562"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.559089"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.559089"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.562020"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.562020"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.564608"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.564608"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.567731"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.567731"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.571126"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.571126"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.574218"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.574218"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.577093"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.577093"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.579882"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.579882"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.582898"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.582898"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.585770"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.585770"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.588284"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.588284"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.590966"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.590966"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.593538"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.593538"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.596103"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.596103"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.598847"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.598847"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.601767"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.601767"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.604645"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.604645"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.607219"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.607219"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.609815"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.609815"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.612506"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.612506"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:33.615583"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:33.615583"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:33 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (14.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:33 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-08 10:48:33 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.7ms) Rendered people/index.html.haml within layouts/application (13.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:33 -0400  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.7ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.195617"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.195617"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.198602"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.198602"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.201708"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.201708"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.204196"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.204196"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.206636"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.206636"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.209135"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.209135"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.211809"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.211809"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.215059"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.215059"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.217909"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.217909"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.220655"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.220655"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.224071"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.224071"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.226946"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.226946"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.229623"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.229623"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.232198"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.232198"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.234793"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.234793"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.237368"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.237368"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.240860"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.240860"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.243779"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.243779"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.246656"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.246656"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.249292"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.249292"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.252226"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.252226"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.255112"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.255112"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.257796"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.257796"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.260816"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.260816"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.263542"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.263542"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.266042"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.266042"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.268709"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.268709"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.271831"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.271831"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.274324"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.274324"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.276944"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.276944"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:34.279970"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:34.279970"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:34 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.5ms) Rendered people/index.html.haml within layouts/application (13.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:34 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-08 10:48:34 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (16.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:34 -0400  (2.9ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.3ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.134298"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.134298"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.136989"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.136989"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.140298"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.140298"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.143026"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.143026"]]  (1.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.146461"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.146461"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.148957"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.148957"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.151610"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.151610"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.154202"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.154202"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.157192"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.157192"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.159990"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.159990"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.162791"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.162791"]]  (1.6ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.166204"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.166204"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.169526"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.169526"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.172696"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.172696"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.175917"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.175917"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.178960"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.178960"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.181570"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.181570"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.184023"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.184023"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.186509"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.186509"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.189303"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.189303"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.191633"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.191633"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.194245"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.194245"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.197322"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.197322"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.199915"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.199915"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.202635"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.202635"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.205011"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.205011"]]  (1.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.208088"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.208088"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.210517"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.210517"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.213236"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.213236"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.215832"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.215832"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:35.218588"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:35.218588"]]  (1.3ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-08 10:48:35 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (12.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.0ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:35 -0400 Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-08 10:48:35 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (5.3ms) Rendered people/index.html.haml within layouts/application (14.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:35 -0400 Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-08 10:48:36 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.4ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.5ms) Rendered people/index.html.haml within layouts/application (14.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 1.1ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:36 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-08 10:48:36 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.5ms) Rendered people/index.html.haml within layouts/application (12.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:36 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.8ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (2.4ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:37.672286"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:37.672286"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (4.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:48:37 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (21.0ms) Rendered people/edit.html.haml within layouts/application (23.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 28ms (Views: 26.7ms | ActiveRecord: 0.3ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.5ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.3ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (1.1ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:37.725492"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:37.725492"]]  (6.8ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (8.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:37 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-08 10:48:38 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.7ms) commit transaction Redirected to http://127.0.0.1:63165/people Completed 302 Found in 6ms (ActiveRecord: 2.4ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:38 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:38 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.2ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:39 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-08 10:48:39 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (3.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:39 -0400  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.018670"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_3@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.018670"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.022969"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.022969"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.025773"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.025773"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.028286"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.028286"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.031368"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.031368"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.034157"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_25@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.034157"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.037257"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.037257"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.040114"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.040114"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.043028"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_80@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.043028"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.045933"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.045933"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.049179"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.049179"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.052043"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.052043"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.055399"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_84@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.055399"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.058954"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.058954"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.061761"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_56@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.061761"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.064646"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.064646"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.067515"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.067515"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.070812"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_65@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.070812"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.073746"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.073746"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.076457"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_2@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.076457"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.079556"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.079556"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.082290"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_64@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.082290"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.084955"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_42@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.084955"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.087476"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_44@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.087476"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.090689"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_11@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.090689"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.093518"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.093518"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.096289"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.096289"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.099039"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.099039"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.101615"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.101615"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.104565"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_39@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.104565"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.107416"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_43@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.107416"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.110497"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.110497"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.113632"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_59@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.113632"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.117569"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.117569"]]  (1.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.121127"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.121127"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.124998"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.124998"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.128268"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.128268"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.131478"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_60@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.131478"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.135007"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.135007"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.137969"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_6@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.137969"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.141024"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.141024"]]  (5.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.148673"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.148673"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.151931"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.151931"]]  (2.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.156236"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.156236"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.160313"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.160313"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.163931"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_40@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.163931"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.167696"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_37@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.167696"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.172005"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.172005"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.176493"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_8@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.176493"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:40.180370"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:40.180370"]]  (1.3ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:40 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (14.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:40 -0400  (1.0ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.8ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:42.456189"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_190@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:42.456189"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:42.461121"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_191@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:42.461121"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:42.463747"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_192@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:42.463747"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:42.466204"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_193@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:42.466204"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:42.476064"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:42.476064"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (10.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.9ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-08 10:48:42 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.4ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:48:42 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.9ms) Rendered people/new.html.haml within layouts/application (8.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:48:42 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"48", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.7ms) Rendered people/_form.html.haml (8.1ms) Rendered people/new.html.haml within layouts/application (8.4ms) Rendered application/_flash_messages.html.haml (0.1ms) Completed 200 OK in 16ms (Views: 10.2ms | ActiveRecord: 0.1ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:48:42 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.5ms) Rendered people/new.html.haml within layouts/application (8.8ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)  (1.7ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:42.596343"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:42.596343"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:48:42 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.2ms) Rendered people/edit.html.haml within layouts/application (8.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.1ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:48:42 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.5ms) Rendered people/new.html.haml within layouts/application (7.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:42 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-08 10:48:43 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"10", "dob(5i)"=>"48", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:43.440423"], ["dob", "2012-08-08 10:48:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:43.440423"]]  (0.9ms) commit transaction Redirected to http://127.0.0.1:63165/people Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.2ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:48:43 -0400  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.8ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:44.284746"], ["dob", "2012-08-08 14:48:44.283622"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:44.284746"]]  (1.0ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:48:44 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (8.0ms) Rendered people/edit.html.haml within layouts/application (8.3ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 10:48:44 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"10", "dob(5i)"=>"48", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-08 10:48:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-08 14:48:44.322247"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:48:44 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.6ms) Rendered people/new.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:48:44 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"48", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:44.373660"], ["dob", "2014-08-08 14:48:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 14:48:44.373660"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 4ms (ActiveRecord: 1.2ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:48:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (4.4ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.4ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:48:44 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.9ms) Rendered people/new.html.haml within layouts/application (7.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:48:44 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"48", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:44.415858"], ["dob", "2014-08-08 14:48:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 14:48:44.415858"]]  (1.0ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:48:44 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.0ms) Rendered people/new.html.haml within layouts/application (7.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:48:44.444104"], ["dob", "1984-08-08 14:48:20.778598"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:48:44.444104"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:48:44 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.2ms) Rendered people/edit.html.haml within layouts/application (7.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 10:48:44 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"48", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-08 14:48:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-08 14:48:44.467878"]]  (1.3ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 4ms (ActiveRecord: 1.8ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:48:44 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (6.5ms) Rendered people/edit.html.haml within layouts/application (6.8ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.1ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 1"], ["created_at", "2014-08-08 14:55:22.093125"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.093125"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-08 10:55:22 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0 CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (9.5ms) Rendered credit_card_infos/index.html.haml within layouts/application (19.3ms) Rendered application/_flash_messages.html.haml (14.0ms) Completed 200 OK in 61ms (Views: 60.3ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 2"], ["created_at", "2014-08-08 14:55:22.187352"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.187352"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 3"], ["created_at", "2014-08-08 14:55:22.190378"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.190378"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 4"], ["created_at", "2014-08-08 14:55:22.193404"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.193404"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 5"], ["created_at", "2014-08-08 14:55:22.196598"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.196598"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 6"], ["created_at", "2014-08-08 14:55:22.199301"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.199301"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 7"], ["created_at", "2014-08-08 14:55:22.202609"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.202609"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 8"], ["created_at", "2014-08-08 14:55:22.205412"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.205412"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 9"], ["created_at", "2014-08-08 14:55:22.207986"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.207986"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 10"], ["created_at", "2014-08-08 14:55:22.210627"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.210627"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 11"], ["created_at", "2014-08-08 14:55:22.213234"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.213234"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 12"], ["created_at", "2014-08-08 14:55:22.216763"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.216763"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 13"], ["created_at", "2014-08-08 14:55:22.219628"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.219628"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 14"], ["created_at", "2014-08-08 14:55:22.222385"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.222385"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 15"], ["created_at", "2014-08-08 14:55:22.225253"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.225253"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 16"], ["created_at", "2014-08-08 14:55:22.227901"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.227901"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 17"], ["created_at", "2014-08-08 14:55:22.230909"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.230909"]]  (188.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 18"], ["created_at", "2014-08-08 14:55:22.421964"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.421964"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 19"], ["created_at", "2014-08-08 14:55:22.425122"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.425122"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 20"], ["created_at", "2014-08-08 14:55:22.428118"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.428118"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 21"], ["created_at", "2014-08-08 14:55:22.430766"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.430766"]]  (2.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 22"], ["created_at", "2014-08-08 14:55:22.434930"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.434930"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 23"], ["created_at", "2014-08-08 14:55:22.438193"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.438193"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 24"], ["created_at", "2014-08-08 14:55:22.441174"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.441174"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 25"], ["created_at", "2014-08-08 14:55:22.443998"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.443998"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 26"], ["created_at", "2014-08-08 14:55:22.447040"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.447040"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 27"], ["created_at", "2014-08-08 14:55:22.449811"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.449811"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 28"], ["created_at", "2014-08-08 14:55:22.452513"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.452513"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 29"], ["created_at", "2014-08-08 14:55:22.455197"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.455197"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 30"], ["created_at", "2014-08-08 14:55:22.458044"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.458044"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 31"], ["created_at", "2014-08-08 14:55:22.460584"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.460584"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "credit_card_infos" ("cardholder", "created_at", "exp_date", "secret_code", "updated_at") VALUES (?, ?, ?, ?, ?) [["cardholder", "John Adams 32"], ["created_at", "2014-08-08 14:55:22.463409"], ["exp_date", "2016-08-08"], ["secret_code", "e94af2e681c9b778"], ["updated_at", "2014-08-08 14:55:22.463409"]]  (1.2ms) commit transaction Started GET "/credit_card_infos" for 127.0.0.1 at 2014-08-08 10:55:22 -0400 Processing by CreditCardInfosController#index as HTML CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered credit_card_infos/index.html.haml within layouts/application (6.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.4ms) Started GET "/credit_card_infos?page=2&per_page=15" for 127.0.0.1 at 2014-08-08 10:55:22 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} CreditCardInfo Load (0.2ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "credit_card_infos" CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (3.0ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.6ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.5ms) Started GET "/credit_card_infos?per_page=100" for 127.0.0.1 at 2014-08-08 10:55:22 -0400 Processing by CreditCardInfosController#index as HTML Parameters: {"per_page"=>"100"} CreditCardInfo Load (0.5ms) SELECT "credit_card_infos".* FROM "credit_card_infos" LIMIT 100 OFFSET 0 CreditCardInfo Load (0.1ms) SELECT "credit_card_infos".* FROM "credit_card_infos" ORDER BY "credit_card_infos"."id" ASC LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered credit_card_infos/index.html.haml within layouts/application (5.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.6ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:27 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.6ms) Rendered application/_search_form.html.haml (1.9ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (16.0ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 37ms (Views: 32.5ms | ActiveRecord: 0.5ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.9ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.425337"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.425337"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.428753"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.428753"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.431167"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.431167"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.433573"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.433573"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.436071"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.436071"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.439780"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_6@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.439780"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.445726"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_7@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.445726"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.450395"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_8@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.450395"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.455457"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_9@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.455457"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.460023"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_10@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.460023"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.466164"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_11@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.466164"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.470178"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_12@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.470178"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.473692"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_13@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.473692"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.476937"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_14@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.476937"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.479566"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_15@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.479566"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.482938"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_16@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.482938"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.486259"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_17@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.486259"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.489637"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_18@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.489637"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.492364"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_19@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.492364"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.494984"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_20@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.494984"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.498327"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_21@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.498327"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.501133"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_22@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.501133"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.503842"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_23@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.503842"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.506968"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_24@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.506968"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.509530"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_25@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.509530"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.513090"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_26@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.513090"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.516112"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_27@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.516112"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.519185"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_28@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.519185"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.521895"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_29@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.521895"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.524936"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_30@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.524936"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.528236"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_31@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.528236"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:27 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.8ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.6ms) Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-08-08 10:55:27 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"15"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15 Rendered application/_pagination.html.haml (2.7ms) Rendered people/index.html.haml within layouts/application (11.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.6ms) Started GET "/people?per_page=100" for 127.0.0.1 at 2014-08-08 10:55:27 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"100"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (14.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.6ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:27.615238"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_32@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:27.615238"]]  (1.0ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:30 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (7.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 12ms (Views: 9.9ms | ActiveRecord: 0.8ms) Started GET "/assets/application.css" for 127.0.0.1 at 2014-08-08 10:55:30 -0400 Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:30 -0400  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:31 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.4ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.067006"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_33@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.067006"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.070378"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_34@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.070378"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.073108"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_35@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.073108"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.076622"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_36@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.076622"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.079662"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_37@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.079662"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.082599"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_38@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.082599"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.085701"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_39@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.085701"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.088237"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_40@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.088237"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.090751"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_41@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.090751"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.093255"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_42@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.093255"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.096010"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_43@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.096010"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.098877"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_44@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.098877"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.101375"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_45@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.101375"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.103886"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_46@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.103886"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.106492"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_47@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.106492"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.109219"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_48@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.109219"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.111915"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_49@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.111915"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.114424"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_50@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.114424"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.117275"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.117275"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.119914"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_52@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.119914"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.123124"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_53@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.123124"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.126248"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_54@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.126248"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.130082"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_55@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.130082"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.133801"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_56@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.133801"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.136487"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_57@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.136487"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.139221"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_58@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.139221"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.142173"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_59@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.142173"]]  (0.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.145026"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_60@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.145026"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.148359"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_61@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.148359"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.151811"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_62@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.151811"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.154953"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_63@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.154953"]]  (1.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:31 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.0ms) Rendered people/index.html.haml within layouts/application (11.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.7ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.187316"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_64@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.187316"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.190145"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_65@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.190145"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.192856"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_66@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.192856"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.195525"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_67@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.195525"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.198664"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_68@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.198664"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.201448"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_69@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.201448"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.204240"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_70@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.204240"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.207188"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_71@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.207188"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.210253"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_72@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.210253"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.213088"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_73@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.213088"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.215924"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_74@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.215924"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.218891"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_75@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.218891"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.221430"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_76@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.221430"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.224028"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_77@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.224028"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.227333"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_78@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.227333"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.230450"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_79@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.230450"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.233091"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_80@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.233091"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.235682"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_81@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.235682"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.238779"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_82@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.238779"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.241771"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_83@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.241771"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.244678"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_84@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.244678"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.247675"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_85@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.247675"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.251632"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_86@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.251632"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.254912"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_87@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.254912"]]  (12.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.269709"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_88@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.269709"]]  (6.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.278968"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_89@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.278968"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.284230"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_90@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.284230"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.288364"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_91@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.288364"]]  (3.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.294747"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_92@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.294747"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.298351"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_93@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.298351"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:31.301946"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_94@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:31.301946"]]  (1.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:31 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (4.4ms) Rendered people/index.html.haml within layouts/application (15.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:31 -0400 Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-08-08 10:55:32 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"20", "page"=>"1"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (15.9ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:32 -0400  (1.4ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.838107"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_95@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.838107"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.841080"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_96@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.841080"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.843649"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_97@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.843649"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.846263"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_98@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.846263"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.848942"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_99@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.848942"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.851811"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_100@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.851811"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.854373"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_101@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.854373"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.857038"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_102@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.857038"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.859813"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_103@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.859813"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.862396"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_104@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.862396"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.865270"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_105@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.865270"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.868464"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_106@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.868464"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.871045"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_107@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.871045"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.874065"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_108@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.874065"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.877751"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_109@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.877751"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.881393"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_110@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.881393"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.885540"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_111@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.885540"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.888995"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_112@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.888995"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.892127"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_113@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.892127"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.895691"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_114@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.895691"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.898455"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_115@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.898455"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.901183"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_116@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.901183"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.904165"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_117@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.904165"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.906965"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_118@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.906965"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.909560"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_119@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.909560"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.912903"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_120@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.912903"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.915969"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_121@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.915969"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.918733"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_122@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.918733"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.921318"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_123@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.921318"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.923826"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_124@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.923826"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:32.926603"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_125@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:32.926603"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:32 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (13.4ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:32 -0400 Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-08-08 10:55:33 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"10", "page"=>"1"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.3ms) Rendered people/index.html.haml within layouts/application (9.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:33 -0400  (1.8ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.2ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.439520"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_126@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.439520"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.442743"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_127@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.442743"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.445605"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_128@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.445605"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.448033"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_129@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.448033"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.450635"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_130@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.450635"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.453440"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_131@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.453440"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.456101"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_132@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.456101"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.458644"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_133@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.458644"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.461090"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_134@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.461090"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.463758"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_135@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.463758"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.466227"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_136@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.466227"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.469129"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_137@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.469129"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.471915"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_138@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.471915"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.475008"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_139@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.475008"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.478309"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_140@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.478309"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.481007"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_141@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.481007"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.483528"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_142@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.483528"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.486119"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_143@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.486119"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.488793"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_144@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.488793"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.491388"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_145@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.491388"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.493990"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_146@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.493990"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.496699"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_147@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.496699"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.499287"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_148@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.499287"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.502408"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_149@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.502408"]]  (1.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.505512"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_150@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.505512"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.508102"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_151@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.508102"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.510683"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_152@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.510683"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.513408"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_153@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.513408"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.516635"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_154@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.516635"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.519896"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_155@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.519896"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:33.522713"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_156@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:33.522713"]]  (1.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:33 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (5.1ms) Rendered people/index.html.haml within layouts/application (17.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:33 -0400 Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-08-08 10:55:33 -0400 Processing by PeopleController#index as HTML Parameters: {"per_page"=>"All", "page"=>"1"}  (0.2ms) SELECT COUNT(*) FROM "people" Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (19.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 23ms (Views: 20.5ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:33 -0400  (1.4ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.350997"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_157@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.350997"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.353732"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_158@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.353732"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.356366"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_159@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.356366"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.358998"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_160@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.358998"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.361860"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_161@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.361860"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.364423"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_162@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.364423"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.366962"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_163@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.366962"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.369348"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_164@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.369348"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.371897"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_165@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.371897"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.374943"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_166@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.374943"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.377586"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_167@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.377586"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.380326"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_168@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.380326"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.383044"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_169@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.383044"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.385694"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_170@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.385694"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.388272"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_171@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.388272"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.391242"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_172@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.391242"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.394840"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_173@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.394840"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.397784"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_174@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.397784"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.400284"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_175@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.400284"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.402726"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_176@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.402726"]]  (1.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.405363"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_177@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.405363"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.407779"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_178@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.407779"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.410557"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_179@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.410557"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.413165"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_180@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.413165"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.415694"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_181@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.415694"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.418284"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_182@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.418284"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.420698"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_183@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.420698"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.423152"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_184@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.423152"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.425907"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_185@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.425907"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.428550"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_186@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.428550"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:34.431363"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_187@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:34.431363"]]  (1.1ms) commit transaction Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-08 10:55:34 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.9ms) Rendered people/index.html.haml within layouts/application (12.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:34 -0400 Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-08 10:55:34 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.6ms) Rendered people/index.html.haml within layouts/application (11.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:35 -0400 Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-08-08 10:55:35 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"1", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.2ms) Rendered people/index.html.haml within layouts/application (12.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:35 -0400 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Started GET "/people?page=2&per_page=10" for 127.0.0.1 at 2014-08-08 10:55:36 -0400 Processing by PeopleController#index as HTML Parameters: {"page"=>"2", "per_page"=>"10"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (9.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:36 -0400 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 11]]  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:36.958776"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_188@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:36.958776"]]  (1.5ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.9ms) Rendered people/index.html.haml within layouts/application (5.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.5ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:55:36 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (18.8ms) Rendered people/edit.html.haml within layouts/application (21.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:37.008841"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_189@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:37.008841"]]  (1.2ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (5.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:37 -0400  (0.2ms) SELECT COUNT(*) FROM "people" Started DELETE "/people/1" for 127.0.0.1 at 2014-08-08 10:55:37 -0400 Processing by PeopleController#destroy as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]  (1.0ms) commit transaction Redirected to http://127.0.0.1:63916/people Completed 302 Found in 4ms (ActiveRecord: 1.5ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (4.0ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:37 -0400  (0.2ms) SELECT COUNT(*) FROM "people"  (1.6ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.5ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.1ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.2ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:38 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.2ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.3ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:38 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.0ms) Rendered people/index.html.haml within layouts/application (3.0ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.6ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:38 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (5.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:38 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2014-08-08 10:55:39 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Rendered application/_pagination.html.haml (1.1ms) Rendered people/index.html.haml within layouts/application (3.8ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:39 -0400  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.4ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.287479"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_78@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.287479"]]  (0.9ms) commit transaction  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.291246"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_15@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.291246"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.294102"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_86@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.294102"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.297350"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.297350"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.300618"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.300618"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.303668"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.303668"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.306326"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_73@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.306326"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.308991"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.308991"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.311989"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.311989"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.315414"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.315414"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.318540"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_5@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.318540"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.321720"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_63@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.321720"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.325690"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.325690"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.329377"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.329377"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.332791"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.332791"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.335705"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.335705"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.339020"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.339020"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.341772"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_52@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.341772"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.344445"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.344445"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.347558"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.347558"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.350707"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_13@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.350707"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.354083"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.354083"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.357249"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.357249"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.360086"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.360086"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.362823"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.362823"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.365634"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.365634"]]  (0.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.368358"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.368358"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.371185"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.371185"]]  (0.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.373791"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_24@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.373791"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.376763"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_82@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.376763"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.379959"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_97@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.379959"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.383796"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_10@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.383796"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.386949"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.386949"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.390199"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_75@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.390199"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.393292"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_58@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.393292"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.396474"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.396474"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.400032"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_38@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.400032"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.403220"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.403220"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.406510"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_7@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.406510"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.410109"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.410109"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.413683"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.413683"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.417369"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_67@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.417369"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.420387"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.420387"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.423476"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_1@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.423476"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.426362"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.426362"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.429790"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_17@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.429790"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.433097"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.433097"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.436227"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_35@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.436227"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.439390"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.439390"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:39.442542"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoesemail_98@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:39.442542"]]  (1.6ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (3.1ms) Rendered people/index.html.haml within layouts/application (15.2ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:39 -0400  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:41.763277"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_190@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:41.763277"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:41.767090"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_191@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:41.767090"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:41.770080"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_192@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:41.770080"]]  (0.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:41.772568"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_193@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:41.772568"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:41.776129"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:41.776129"]]  (0.9ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:41 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (5.7ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.4ms) Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-08-08 10:55:41 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"wIlL"} Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (6.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.5ms)  (1.1ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:55:41 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.6ms) Rendered people/new.html.haml within layouts/application (8.9ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:55:41 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"55", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered application/_validation_errors.html.haml (1.9ms) Rendered people/_form.html.haml (7.2ms) Rendered people/new.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 17ms (Views: 9.8ms | ActiveRecord: 0.2ms)  (1.5ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.0ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:55:41 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.9ms) Rendered people/new.html.haml within layouts/application (7.1ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'people';  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:41.890927"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:41.890927"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:55:41 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.4ms) Rendered people/edit.html.haml within layouts/application (7.7ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.1ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:55:41 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (8.6ms) Rendered people/new.html.haml within layouts/application (9.1ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:41 -0400 Started POST "/people" for 127.0.0.1 at 2014-08-08 10:55:42 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"10", "dob(5i)"=>"55", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:42.727871"], ["dob", "2012-08-08 10:55:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:42.727871"]]  (2.3ms) commit transaction Redirected to http://127.0.0.1:63916/people Completed 302 Found in 6ms (ActiveRecord: 2.8ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:42 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (4.7ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js" for 127.0.0.1 at 2014-08-08 10:55:42 -0400  (1.5ms) DELETE FROM "credit_card_infos";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.2ms) DELETE FROM "dinosaurs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:43.554373"], ["dob", "2012-08-08 14:55:43.553411"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:43.554373"]]  (0.8ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:55:43 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.1ms) Rendered people/edit.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 10:55:43 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"10", "dob(5i)"=>"55", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "2013-08-08 10:55:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-08-08 14:55:43.590742"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 6ms (ActiveRecord: 1.4ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.3ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.3ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.4ms)  (1.3ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.6ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.8ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:55:43 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (6.0ms) Rendered people/new.html.haml within layouts/application (6.3ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:55:43 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"55", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:43.640508"], ["dob", "2014-08-08 14:55:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 14:55:43.640508"]]  (1.4ms) commit transaction Redirected to http://www.example.com/people Completed 302 Found in 5ms (ActiveRecord: 1.8ms) Started GET "/people" for 127.0.0.1 at 2014-08-08 10:55:43 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0 Person Load (0.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0 Rendered application/_pagination.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.9ms) Rendered application/_flash_messages.html.haml (0.4ms) Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.4ms)  (1.2ms) DELETE FROM "credit_card_infos";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (0.9ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (0.9ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.9ms) DELETE FROM sqlite_sequence where name = 'people'; Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:55:43 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.3ms) Rendered people/new.html.haml within layouts/application (7.6ms) Rendered application/_flash_messages.html.haml (0.3ms) Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms) Started POST "/people" for 127.0.0.1 at 2014-08-08 10:55:43 -0400 Processing by PeopleController#create as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"55", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:43.695093"], ["dob", "2014-08-08 14:55:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-08-08 14:55:43.695093"]]  (0.9ms) commit transaction Redirected to http://www.example.com/people/new Completed 302 Found in 4ms (ActiveRecord: 1.2ms) Started GET "/people/new" for 127.0.0.1 at 2014-08-08 10:55:43 -0400 Processing by PeopleController#new as HTML Rendered people/_form.html.haml (7.7ms) Rendered people/new.html.haml within layouts/application (8.1ms) Rendered application/_flash_messages.html.haml (0.5ms) Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)  (1.6ms) DELETE FROM "credit_card_infos";  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.2ms) DELETE FROM sqlite_sequence where name = 'credit_card_infos';  (1.1ms) DELETE FROM "dinosaurs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'dinosaurs';  (1.0ms) DELETE FROM "people";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (1.0ms) DELETE FROM sqlite_sequence where name = 'people';  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-08-08 14:55:43.726267"], ["dob", "1984-08-08 14:55:19.047074"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-08-08 14:55:43.726267"]]  (0.9ms) commit transaction Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:55:43 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (7.1ms) Rendered people/edit.html.haml within layouts/application (7.5ms) Rendered application/_flash_messages.html.haml (0.2ms) Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.1ms) Started PATCH "/people/1" for 127.0.0.1 at 2014-08-08 10:55:43 -0400 Processing by PeopleController#update as HTML Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_193", "email"=>"johndoe_196@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"8", "dob(3i)"=>"8", "dob(4i)"=>"14", "dob(5i)"=>"55", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"} Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.4ms) UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1 [["dob", "1984-08-08 14:55:00.000000"], ["first_name", "John"], ["updated_at", "2014-08-08 14:55:43.751656"]]  (0.8ms) commit transaction Redirected to http://www.example.com/people/1/edit Completed 302 Found in 4ms (ActiveRecord: 1.4ms) Started GET "/people/1/edit" for 127.0.0.1 at 2014-08-08 10:55:43 -0400 Processing by PeopleController#edit as HTML Parameters: {"id"=>"1"} Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]] Rendered people/_form.html.haml (9.8ms) Rendered people/edit.html.haml within layouts/application (10.1ms) Rendered application/_flash_messages.html.haml (0.6ms) Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.2ms)